• 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/10

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;

10 Cards in this Set

  • Front
  • Back
List the layers of a file management system (FMS).
file control (sw)
storage i/o control (hw)
What is the difference between the logical and physical structure of a file?
logical: fields and records
physical: actual bits
What advantages are realized by not having an application program interact directly with physical file structure?
Simplification via abstraction. They need no knowledge of storage allocation issues and no programming dependent thereon.(aka black box)
What file types usually are supported directly by a file management system?
text,
executable, and
command (JCL)
[TEC]
What is an allocation unit?
The smallest portion of storage device or medium.
What are the advantages of using small allocation units?
Efficient use of space. Little space is wasted.
What are the disadvantages of using small allocation units?
Additional processing required due to extra data structures.
Describe the use of buffers in file I/O operations.
convert physical records into logical records
When are buffers allocated? When are the released?
Buffers are allocated when a file is opened and released when a file is closed.
Describe the structure of a hierarchical directory?
In a hierarchical directory each directory node may be a file or an embedded subdirectory. Subdirectories may be nested to an arbitrary depth.