• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back
(1/2) List two differences in access between Disk vs. Memory?
Access:
-memory location are accessible individually
-data on disk can only be accessed one chunk at a time (block)
(2/2) List two differences in naming between Disk vs. Memory?
Naming:
• variables are accessed using their address.
• data on disk is normally accessed through a file name
• the OS translates the name and offset into a logical block number
• the disk controller maps that number to the location on disk
What are the three factors that affect retrieving data from a hard disk?
Seek Time, Rotational Latency, Average Transfer Time
Define: Seek Time
Time to position the arm on the right track
formula = ~9ms
Define: Rotational Latency
Time to position head at the right sector
formula = 1/2 * 1/ RPM * 60secs
Define: Average Transfer Time
Time to transfer a sector
formula = 1/ RPM * 1/<avg sectors per track> * 60secs
What is the access time of a disk with 15,000 RPM, 10ms avg seek time and 500 sectors/track?
Access Time = Seek Time + Rotational Latency + Average Transfer Time =
10ms * 1/1000secs] + [ 1/2 * 1 / 15,000RPM * 60secs ] + [ 1/15,000RPM * 1/500 sectors/track * 60secs]
= 0.012008ms(??)