subject
Computers and Technology, 18.12.2019 21:31 ggujjnh

Alocal area network is used as follows. the user issues a system call to write a data packet to the network. the operating system then copies these data to a kernel buffer. then it copies these data to the network controller board. when all the bytes are safely inside the controller, they are sent over the network at a rate of 10 megabits/sec. the receiving network controller stores each bit a microsecond after it is sent. when the last bit arrives, the destination cpu is interrupted, and the kernel copies the newly arrived packet to a kernel buffer to inspect it. once it has figured out which user the packet is for, the kernel copies the data to the user space.

if we assume that each interrupt and its associated processing takes 1 millisecond (msec), that packets are 1024 bytes long (including the headers), and that copying a byte takes 1 microsecond (μsec), what is the maximum rate at which one process can pump data to another?

assume that the sender is blocked until the work is finished at the receiving side and an acknowledgement comes back. for simplicity, assume that the time to get the acknowledgement back is so small that it can be ignored. [suggestions: observe 1) how many times a packet is copied and how long it takes, 2) how many interrupts are there to be processed and how long that takes, and 3) how long the transmission of a packet takes. then calculate the overall data transmission rate.]

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 09:50
Assume that you have an sorted array of records. assume that the length of the array (n) is known. give two different methods to search for a specific value in this array. you can use english or pseudo-code for your algorithm. what is the time complexity for each algorithm and why?
Answers: 1
question
Computers and Technology, 24.06.2019 07:30
John recently worked on a project about various programming languages. he learned that though procedural language programs are useful, they have disadvantages too. what is a disadvantage of programs written in procedural languages? a. programs do not represent data complexity. b. programs take more time to execute. c. programs are prone to security threats. d. programs do not interface with multiple platforms.
Answers: 3
question
Computers and Technology, 24.06.2019 09:50
Create a string list. 2. use console.readline() to collect values of firstname, lastname, street, city, state, zip, save them to list. 3. write a simple linq statement, call method uppercasewords() to change first letter to uppercase. 4. create a foreach statment to display the information. public static string uppercasewords(string value) { char[] array = value.tochararray(); if (array.length > = 1) { if (char.islower(array[0])) { array[0] = char.toupper(array[0]); } } for (int i = 1; i < array.length; i++) { if (array[i - 1] == ' ') { if (char.islower(array[i])) { array[i] = char.toupper(array[i]); } } } return new string(array);
Answers: 3
question
Computers and Technology, 24.06.2019 22:00
What is a number system, and what is the total number of digits used in this system called? a number system is a system that uses different (options: a) numbers b) symbols c) codes d) digits e) alphabets) to represent different numbers. the total number of digits used in a number system is known as its (options: 1) processor 2) converter 3) radix 4) least significant digit 5) most significant digit)
Answers: 1
You know the right answer?
Alocal area network is used as follows. the user issues a system call to write a data packet to the...
Questions
question
Mathematics, 02.10.2019 17:10
question
Social Studies, 02.10.2019 17:10
question
Mathematics, 02.10.2019 17:10
Questions on the website: 13722367