Operating Systems Quiz #9: Virtual Memory and Page Replacement

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Flashcards covering page faults, demand paging, virtual memory advantages, and page replacement algorithms like FIFO, OPT, and LRU based on Quiz #9.

Last updated 2:36 PM on 7/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

The instruction that causes a __________ needs to be re-executed after the fault has been handled.

page fault

2
New cards

__________ initially allows a parent and child process to share the same pages.

Copy-On-Write (COW)

3
New cards

In __________, a page is loaded in memory only when it is needed during execution.

demand paging

4
New cards

One advantage of virtual memory is that a program can be much __________ than the size of physical memory.

larger

5
New cards

Virtual memory allows programmers to concentrate on programming the problem instead of worrying about the amount of __________ available.

physical memory

6
New cards

Virtual memory provides a way to execute a program that is only __________ loaded in memory.

partially

7
New cards

The __________ bit identifies a page that has been modified since it was loaded.

dirty (modify)

8
New cards

__________ page replacement is used mostly for comparison with other page-replacement schemes.

Optimal

9
New cards

Using the FIFO replacement algorithm on the page access string 12342341211314 with three frames results in __________ page faults.

8

10
New cards

Under FIFO, the final configuration of three frames for the reference string 1 2 3 4 2 3 4 1 2 1 1 3 1 4 is __________.

3, 1, 4

11
New cards

After the OPT algorithm is applied to the reference string 1 2 3 4 2 3 4 1 2 1 1 3 1 3 with three page frames, the final configuration is __________.

1, 2, 3

12
New cards

Given the reference string 1 2 3 4 2 3 4 1 2 1 1 3 1 4 and three page frames, the final configuration after the LRU algorithm is applied is __________.

3, 1, 4