1
Q

What is LRU/LFU?

A

Least Recently/Frequently Used - The most recently requested page is replaced

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is FIFO?

A

First In First Out - The element that has been inside the frame the longest is replaced

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Belady’s Anomaly?

A

An occurence where some page replacement algiorithms have an increasing number of hard faults/page faults as the number of frames increases.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is single-processing?

A

one process in memory at any time. It is easy to implement - it either fits or it doesn’t.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is multi-processing?

A

multiple processes in memory at the same time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is swapping?

A

allows computer rapidly “swap” its CPU between the process by loading and unloading them into/from memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a process table?

A

contains entries called Process Control Blocks. It contains data such as process state and process ID, program counter, memory address of the Page Table, resources in-used/needed, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is cache memory?

A

is small and stores only active pages. It is searched first for page number. If not found, search then goes to the page table in conventional memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly