InterviewSolution
Saved Bookmarks
| 1. |
What Is a Virtual Memory in Embedded C and how can it be implemented? |
|
Answer» Virtual memory is a means of allocating memory to the processes if there is a shortage of physical memory by using an automatic allocation of storage. The main advantage of using virtual memory is that it is possible to have larger virtual memory than physical memory. It can be implemented by using the TECHNIQUE of paging. Paging works as follows:
|
|