Chapter 11 Vocabulary Test Questions – Flashcards
Unlock all answers in this set
Unlock answersquestion
A(n) ____ OS supports multiple active processes or users
answer
Multi-tasking
question
In virtual memory management, a memory page's location is determined by searching a(n) ____
answer
Page table
question
A(n) ____ occurs when a process or thread references a memory page not currently held in memory
answer
Page fault
question
Dispatching a thread moves it from the ____ state to the ____ state.
answer
Ready, running
question
The CPU periodically generates a(n) ___ to give the scheduler an opportunity to allocate the CPU to another ready process.
answer
Time interrupt
question
A(n) ____ is an OS that enables dividing a single physical computer or cluster into multiple virtual machines
answer
Hypervisor
question
In the ____ scheduling method, threads are dispatched in order of their arrival.
answer
First come first served
question
A(n) ____ process contains subunits that can be executed concurrently or simultaneously.
answer
Multi-threaded
question
____ scheduling guarantees that a thread receives enough resources to complete one ____ in a maximum time interval
answer
Real time scheduling, program cycle
question
Hardware resources consumed by an OS's resource allocation functions are called ____
answer
System overhead
question
____ scheduling refers to any type of scheduling in which a running thread can lose control of the CPU to another thread
answer
Preemptive
question
The act of selecting a running thread and loading its register contents is called ____ and is performed by the ____
answer
Dispatching, scheduler
question
To achieve efficient use of the memory and a large number of concurrently executing processes, most OSs use ____ memory management
answer
virtual
question
When a thread makes an I/O service request, it's placed in the ____ state until processing of the request is finished
answer
blocked
question
Memory pages not held in primary storage are held in the ____ of a secondary storage device
answer
Swap space
question
On a computer with a single CPU, multitasking is achieved by ____ execution of multiple processes.
answer
Concurrent
question
With ____, all portions of a process must be loaded into sequential physical memory partitions
answer
Contiguous
question
The ____, ____, and ____ are the main layers of an OS
answer
Kernel, service, command
question
A(n) ____ is the unit of memory read from or written to the swap space
answer
Page
question
A(n) ____ resource is apparent to a process or user, although it might not physically exist
answer
Virtual
question
Under a(n) ____ memory allocation scheme, portions of a single process might be physically located in scattered partitions of main memory
answer
non-contiguous
question
In virtual memory management, memory references by a process must be converted to an offset in a(n) ____
answer
Page frame
question
Information about a process's execution state, such as register values and process status, are stored in a(n) ____
answer
Process control block
question
With the ___ scheduling method, threads requiring the least CPU time are dispatched first
answer
Shortest time remaining
question
A(n) ____ causes the currently executing process to be ____ and control to be passed to the ____
answer
Interrupt, pushed, supervisors
question
The process of converting an address operand into a physical address in a memory partition or page frame is called ____
answer
Address mapping
question
A(n) ____ is an executable subunit of a process that's scheduled independently but shares memory and I/O resources
answer
Thread
question
The ____ endian storage format places the ____ byte of a word in the lowest memory address. The ____ endian sotrage format places the ____ byte of a word in the lowest memory address
answer
big, most significant, little, least significant
question
In ____, program memory references correspond to physical memory locations. In ____, the CPU must calculate the physical memory location that corresponds to a program memory reference
answer
Absolute addressing, Indirect addressing
question
In indirect addressing, the content of a(n) ____ is added to calculate the corresponding physical memory address.
answer
Offset register