InterviewSolution
Saved Bookmarks
| 1. |
In the buffer where there is no space for another block, the block can be inserted using(a) Pinned block strategy(b) Forced output block(c) Buffer replacement strategy(d) All of the mentionedThe question was posed to me in final exam.This interesting question is from Database Buffer topic in section Storage and File Structures of Database Management |
|
Answer» CORRECT choice is (c) Buffer replacement strategy To EXPLAIN: Most operating systems use a least RECENTLY used (LRU) scheme, in which the block that was REFERENCED least recently is written BACK to disk and is removed from the buffer. |
|