Answer:
The answer is below
Explanation:
a)
If the blocks of a file are not put together, that is for nonadjacent block of files to each other, the time (t) taken to read a 100 block file is:
t = (average seek + rotational latency + transfer time) * 100 block
Average seek = 5 msec, rotational latency = 10 msec and transfer time = 20 microsec = 0.02 msec
t = (5 + 10 + 0.02) * 100 = 1502 msec
b)
If the blocks of a file are put together, that is for adjacent block of files to each other, the time (t) taken to read a 100 block file is:
t = (seek time * mean interblock distance + rotational latency + transfer time) * 100 block
seek time = 100 microsec = 0.1 msec, rotational latency = 10 msec and transfer time = 20 microsec = 0.02 msec, mean interblock distance = 2 cylinders
t = (0.1*2 + 10 + 0.02) * 100 = 1022 msec
Answer:
Magnetic Storage. Magnetic storage encodes data in patterns of positive and negative magnetic polarity on some magnetic medium like organic metal. ...
Optical Storage. Optical storage technology use laser/optical reflection phenomenon to read or write data. ...
Solid State storage.
Explanation:
Hope this help!!
Democracy is the best form of government simply because no other form of government is known to work well. Democracy may have its flaws but all in all it .
Answer:i think its D it makes more sense also can i get brainliest
Explanation:
The program accepts a whole number as input, multiplies that number by 12, and then outputs the product
Explanation:
This program asks user to enter two integer numbers and displays the product.
The scanner class is used as input functions.
The code is shown below :
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.print("Enter number: ");
int num1 = scan.nextInt();
scan.close();
int product = num1*12;
System.out.println("Output: "+product);
}
}