Answer:
Given the number of platters =5
A. Hence, the number of recording surface =10
B. number of read-write heads =10
C. Number of arms holding the read-write heads = 10
Explanation:
We know that number of recording surface = 2 *( number of platters)
= 2*5=10
And the number of read-write heads = number of recording surface= 10
Also, number of arms holding the read-write head = one for each read-write head= 10
And hence, the above answer.
Answer: you may be connected to wifi near you
Explanation:
1. Restart your computer
2 Then got to settings
3 Go to Wi-Fi
4. Disconnect from your Wi-Fi
5 Connect to your Wi-Fi
If that does not work, go look it up lol.
Answer:
function sum(number) {
if (number == 1) {
return 1;
}
return number + sum(number -1);
}
Explanation:
This is a recursive function, it means that is a function that calls itself for example: if you call the function with sum(5) the process is :
sum(5)
|______ 5 + sum(4)
|_______ 4 + sum(3)
|______ 3 + sum(2)
|_____2 + sum(1)
|_____ 1
the result is 1+2+3+4+5 = 15
HISTSIZE is the environment variable affects the number of past commands used in the current shell session.