Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Understanding Operating Systems
Quiz 3: Memory Management Includes Virtual Memory
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
True/False
Cache memory is based on the concept of using a large,fast,and expensive memory to supplement the workings of main memory.
Question 2
True/False
With segmented memory allocation,each job is divided into several segments of the same size,one for each module containing pieces that perform related functions.
Question 3
True/False
In a demand paging scheme,the first-in first-out (FIFO)page replacement policy chooses the page least recently accessed to be swapped out.
Question 4
True/False
The optimal selection of cache size and replacement algorithm can result in 80 to 90 percent of all requests being in the cache.
Question 5
True/False
The key to the successful implementation of demand paging is the use of a high-speed CPU.
Question 6
True/False
Thrashing is a problem that occurs when there are a large number of jobs and many free pages so that pages are being moved around too much.
Question 7
True/False
A variation of the LRU page replacement algorithm known as the clock page replacement policy is implemented using a pointer to step through the reference bits of the active pages,simulating a clockwise motion.
Question 8
True/False
Virtual memory can be implemented with both paging and segmentation.
Question 9
True/False
The primary advantage of storing programs in noncontiguous page frames (in a paged memory allocation scheme)is that main memory is used more efficiently because an empty page frame can be used by any page of any job.
Question 10
True/False
With demand paging,if there are no empty page frames available,to move in a new page,one of the current resident pages must be placed into main memory.
Question 11
True/False
The segmented/demand paged memory allocation scheme is a combination of segmentation and demand paging,and it offers the logical benefits of segmentation,as well as the physical benefits of paging.
Question 12
True/False
Paged memory allocation offers the advantage that it doesn't require the entire job to be stored in memory during its execution.
Question 13
True/False
When using a FIFO scheme,adding more memory always results in better performance.
Question 14
True/False
Demand paging introduced the concept of loading only a part of the program into memory for processing
Question 15
True/False
The Job Table (JT)contains two values for each active job: the size of the job and the memory location where its Page Map Table is stored.
Question 16
True/False
Associative memory is a name given to several hardware registers that are allocated to each active job whose task is to associate segment and page numbers belonging to the job being processed with their main memory addresses.
Question 17
True/False
With demand paging,three additional fields are introduced for each page in each PMT: one to determine if the page being requested is already in memory,a second to determine if the page contents have been modified while in memory,and a third to determine if the page has been referenced most recently.
Question 18
True/False
In the bit-shifting variation of the LRU page replacement policy,the process of shifting bits to the right and resetting the leftmost bit to 1 when a page is referenced gives a history of each page's usage.