Concept:
Belady's Anomaly is a phenomenon where increasing the number of page frames results in an increase in the number of page faults.
Normally, increasing memory should decrease page faults.
Step 1: Understand FIFO page replacement.
FIFO removes the page that entered memory earliest.
It does not consider:
• Recent usage
• Future usage
Thus it may remove frequently needed pages.
Step 2: Observe Belady's anomaly.
For certain reference strings,
\[
\text{Page Faults with 4 Frames}
>
\text{Page Faults with 3 Frames}
\]
which is counterintuitive.
This behavior is called Belady's anomaly.
Step 3: Check other algorithms.
Stack algorithms such as:
\[
\text{LRU}
\]
and
\[
\text{Optimal}
\]
do not suffer from Belady's anomaly.
Step 4: Select the answer.
Therefore,
\[
\boxed{\text{FIFO}}
\]
suffers from Belady's anomaly.
Was this answer helpful?
0
0
Top TS PGECET Computer Science & Information Technology Questions