Unit 5 - Practice Quiz

CSE316

1 The address generated by the CPU is known as:

A. Physical address
B. Logical address
C. Post-relocation register address
D. Memory Management Unit address

2 The run-time mapping from virtual to physical addresses is done by a hardware device called the:

A. Memory Management Unit (MMU)
B. CPU Scheduler
C. Device Driver
D. Loader

3 In the context of memory management, what is the backing store?

A. The main memory (RAM)
B. The fast disk large enough to accommodate copies of all memory images for all users
C. The L1 Cache
D. The Registry

4 Which memory allocation policy allocates the smallest hole that is big enough to hold a process?

A. First fit
B. Best fit
C. Worst fit
D. Next fit

5 External fragmentation occurs when:

A. Total memory space exists to satisfy a request, but it is not contiguous
B. Allocated memory may be slightly larger than requested memory
C. A process is loaded into memory but never executed
D. Pages are not modified in memory

6 What is the solution to external fragmentation?

A. Paging
B. Compaction
C. Segmentation
D. Swapping

7 In paging, physical memory is broken into fixed-sized blocks called:

A. Pages
B. Frames
C. Segments
D. Sectors

8 If the page size is 4 KB (2^12), how many bits are required for the page offset?

A. 10 bits
B. 12 bits
C. 20 bits
D. 32 bits

9 What data structure is used to map logical pages to physical frames?

A. Frame table
B. Page table
C. Segment table
D. Process Control Block

10 Paging suffers from which type of fragmentation?

A. External fragmentation
B. Internal fragmentation
C. Both internal and external
D. Neither

11 The Translation Look-aside Buffer (TLB) is used to:

A. Store the entire page table
B. Speed up the translation of logical addresses to physical addresses
C. Handle page faults
D. Perform segmentation

12 In segmentation, the logical address consists of:

A. Page number and offset
B. Segment number and offset
C. Frame number and offset
D. Base and Limit

13 Which register is used in segmentation to store the starting physical address of a segment?

A. Limit register
B. Base register
C. Instruction register
D. Index register

14 What technique allows a process to be larger than the physical memory allocated to it?

A. Contiguous allocation
B. Overlays
C. Virtual Memory
D. Segmentation

15 Overlays are used when:

A. The process is smaller than physical memory
B. The process is larger than the amount of memory allocated to it
C. Paging is disabled
D. The OS supports virtual memory

16 In demand paging, a page is brought into memory only when:

A. The process starts
B. It is modified
C. It is needed/referenced during execution
D. The time quantum expires

17 What happens when a process tries to access a page that is not currently in memory?

A. Segmentation fault
B. Page fault
C. System crash
D. Deadlock

18 Which bit in the page table indicates whether a page is in memory or on the disk?

A. Dirty bit
B. Reference bit
C. Valid-invalid bit
D. Protection bit

19 What is the main advantage of multi-level paging?

A. Faster memory access
B. Elimination of internal fragmentation
C. Reducing the size of the page table in memory
D. Simpler hardware implementation

20 In the context of page replacement, Belady's Anomaly states that:

A. LRU is always better than FIFO
B. For some algorithms, the page-fault rate may increase as the number of allocated frames increases
C. Optimal replacement is impossible to implement
D. Thrashing occurs when CPU utilization is low

21 Which page replacement algorithm has the lowest possible page-fault rate for a fixed number of frames?

A. FIFO
B. LRU
C. Optimal
D. Counting-based

22 Which page replacement algorithm replaces the page that has not been used for the longest period of time?

A. FIFO
B. Optimal
C. LRU (Least Recently Used)
D. MFU (Most Frequently Used)

23 What is 'Thrashing' in an operating system?

A. A high rate of I/O operations
B. A process spending more time paging than executing
C. A deadlock situation
D. When the hard disk is full

24 The 'Working Set Model' is used to prevent:

A. Deadlocks
B. Thrashing
C. fragmentation
D. Page faults

25 In Segmentation with Paging:

A. The segment is divided into pages
B. The page is divided into segments
C. There are no page tables
D. External fragmentation is high

26 Which bit is used to indicate if a page has been modified while in memory?

A. Valid bit
B. Dirty (or Modify) bit
C. Reference bit
D. Present bit

27 Pure demand paging implies:

A. Loading all pages before execution
B. Never swapping pages out
C. Starting a process with no pages in memory
D. Using segmentation only

28 The effective access time in a paged memory system depends heavily on:

A. The clock speed
B. The Page Fault Rate
C. The size of the hard disk
D. The number of processes

29 Which allocation algorithm allocates the first hole that is big enough?

A. First fit
B. Best fit
C. Worst fit
D. Quick fit

30 Logical address space is seen by:

A. The Memory Management Unit
B. The User / Program
C. The Bus
D. The RAM

31 The limit register in segmentation is used to:

A. Store the starting address
B. Specify the length of the segment
C. Count the number of segments
D. Point to the segment table

32 If a page fault occurs and there are no free frames, what must the OS do?

A. Terminate the process
B. Increase the page size
C. Execute a page replacement algorithm
D. Ignore the instruction

33 Which of the following is a disadvantage of the FIFO page replacement algorithm?

A. It is hard to implement
B. It suffers from Belady's Anomaly
C. It requires hardware support
D. It uses a stack

34 Copy-on-Write (COW) allows parent and child processes to initially share the same:

A. Stack
B. Pages
C. Segments
D. File descriptors

35 The Second Chance (or Clock) algorithm is an approximation of:

A. FIFO
B. Optimal
C. LRU
D. MRU

36 Locality of reference refers to:

A. The tendency of a program to access the same set of memory locations frequently over a short period
B. The physical location of memory sticks
C. The distance between the CPU and RAM
D. Global variables only

37 Which scheme allows the user to view memory as a collection of variable-sized logical units?

A. Paging
B. Segmentation
C. Contiguous Allocation
D. Hashing

38 In a system using paging, if the logical address is 32 bits and the page size is 4KB (2^12 bytes), what is the size of the page number?

A. 12 bits
B. 20 bits
C. 32 bits
D. 10 bits

39 Internal fragmentation is NOT possible in:

A. Paging
B. Fixed Partitioning
C. Segmentation
D. Demand Paging

40 What is the purpose of the 'fence register' in early memory management?

A. To prevent a user program from modifying the OS part of memory
B. To count pages
C. To store the stack pointer
D. To clock the CPU

41 In inverted page tables:

A. There is one entry for each logical page
B. There is one entry for each real physical frame
C. The table is stored on the disk
D. It increases memory usage significantly

42 Which allocation strategy creates the largest leftover hole?

A. Best fit
B. First fit
C. Worst fit
D. Next fit

43 Swapping requires the backing store to be:

A. Volatile
B. Accessible only by the kernel
C. Large and fast
D. Tape storage

44 A 'Global' page replacement policy allows:

A. A process to select a replacement frame from the set of all frames in the system
B. A process to only replace its own frames
C. The OS to replace the kernel
D. Pages to be shared globally

45 If the TLB hit ratio is high, the effective memory access time is:

A. Close to the memory access time
B. Doubled
C. Tripled
D. Halved

46 Pre-paging is a technique used to:

A. Avoid the large number of initial page faults
B. Clear memory before use
C. Compress pages
D. Encrypt pages

47 Which fragmentation is solved by 'Compaction'?

A. Internal
B. External
C. Logical
D. Virtual

48 The mapping of a logical address to a physical address is done at 'Load Time' if:

A. We know where the process will reside in memory at compile time
B. Memory location is not known until execution
C. The process can be moved during execution
D. Virtual memory is used

49 In a Multi-level paging scheme with a two-level page table, the logical address is divided into:

A. Page number, offset
B. Segment, offset
C. Outer page table index, Inner page table index, offset
D. Row, Column

50 Counting based page replacement algorithms include:

A. LFU and MFU
B. FIFO and LRU
C. Optimal and Second Chance
D. Round Robin