

InterviewSolution
Saved Bookmarks
1. |
What is the state of the buffer if it asked for data and cannot provide it?(a) overrun(b) underrun(c) remains unchanged(d) beyond overrunThe question was posed to me in semester exam.My question comes from Buffers in portion Buffering and other Data Structures of Embedded Systems |
Answer» RIGHT answer is (b) underrun To explain: The buffer is said to be overrun if the buffer cannot ACCEPT any more data and said to be underrun if it asked for data but not ABLE to provide it. |
|