Answer:
Many things are true about it
No it is not. it's quite simple when you get the hang of it
Answer:
24.167 micro seconds.
Explanation:
The given rotation rate = 7200 rpm = 7200 rounds per minute
Rotational latency is the average time taken for the head to reach starting of sector
.
Rotational latency (in micro seconds) = (1 / (RPM / 60)) * 0.5 * 1000
(1/(7200/60))* 0.5 * 1000 = 4.167 ms
Thus, rotational latency = 4.167 ms.
Seek time = 20 ms
The average time taken for the access head to get to the beginning of randomly selected sector will be equal to the average time to first reach the random track plus the average time taken to reach random sector
.
= 20 ms + 4.167 ms = 24.167 micro seconds.
Thus, it would take 24.167 micro seconds to get the access head to the beginning of a randomly selected sector on a randomly selected track.
A student is curious about how a Web site appears on his computer screen. There is a communication between the client and the server in the Application Layer.
Explanation:
- When we choose to open a webpage (in any browser) the seventh layer of the OSI model - called Application layer will help to do that.
- What happens after we write the webpage address in address bar is that the Application layer protocol (also called HTTP) formats and sends the request from the client's browser (Internet Explorer, Mozilla Firefox , Opera, Safari etc.) to the server.
- It also formats and sends the server's respond back to client's browser. This process happens very fast and all the OSI model layers are processing in it (not only the Application layer).
- All the layers are working together and each of them is responsible for some particular job, but all together they work as one. The layers communicate with each other and in case of error they will retry and fix the error or if they are unable to do it, the responsible layer will inform the user about the source of the problem.
- What happens when page is requested and received? If we will remove the graphical and visual image and look at the process that computer does. We will see a set of commands, mathematical algorithms, symbols, letters and not understandable codes and processes.
- When data is sent from "A" to "B", a transport layer is responsible to send and deliver it correctly and exactly the same, what was requested.
- If the request, processed by "A" (sender) is too long, the transport layer will divide it in segments (called segmentation process) to understand well and not make a mistake while sending the data to "B" (recipient). After this process data is travelling through the network to the "B" (recipient), if the sent data is segmented or divided, the transport layer is responsible for reassemble it again and "B" (recipient) receives its requested data (It can be web page or other data).
- If the transport layer will not do the segmentation process, then the next - network layer - will check the data and if the requested message is too long it will fragment it (called fragmentation process) and will provide the same as transport layer had to do.
- All the layers processes are connected to each other and work cooperatively.
Answer:
number1 = float(input("Enter the first number: "))
number2 = float(input("Enter the second number: "))
number3 = float(input("Enter the third number: "))
avg = (number1 + number2 + number3) / 3
product = number1 * number2 * number3
print("Average - Product with integer numbers: " + str(int(avg)) + " " + str(int(product)))
print("Average - Product with float numbers: %.6f %0.6f" % (avg, product))
Explanation:
- Get three numbers from the user
- Calculate the average of the numbers
- Calculate the product of the numbers
- Print average and product of the numbers in required format