GCFA · Question #82
Normally, RAM is used for temporary storage of data. But sometimes RAM data is stored in the hard disk, what is this method called?
The correct answer is C. Virtual memory. Virtual memory is the technique where the OS extends apparent RAM by using hard disk space as an overflow area, swapping memory pages between RAM and disk as needed.
Question
Normally, RAM is used for temporary storage of data. But sometimes RAM data is stored in the hard disk, what is this method called?
Options
- ACache memory
- BStatic memory
- CVirtual memory
- DVolatile memory
How the community answered
(58 responses)- A3% (2)
- B7% (4)
- C76% (44)
- D14% (8)
Why each option
Virtual memory is the technique where the OS extends apparent RAM by using hard disk space as an overflow area, swapping memory pages between RAM and disk as needed.
Cache memory is a small, fast layer of memory (typically SRAM) placed between the CPU and main RAM to store frequently accessed data - it does not involve the hard disk.
Static memory (SRAM) refers to a type of semiconductor RAM that holds data without needing periodic refresh cycles - it is a hardware characteristic, not a memory management technique.
Virtual memory is a memory management scheme in which the operating system uses a portion of the hard disk - called a page file or swap space - to store RAM contents that do not fit in physical memory, allowing processes to use more memory than is physically installed. The OS transparently moves pages between RAM and disk based on access patterns, making the combined space appear as a single large memory pool.
Volatile memory describes any memory that loses its stored data when power is removed, such as RAM itself - this is a property of a memory type, not a technique for extending storage to disk.
Concept tested: Virtual memory and page file concepts
Source: https://learn.microsoft.com/en-us/troubleshoot/windows-client/performance/how-to-determine-the-appropriate-page-file-size-for-64-bit-versions-of-windows
Topics
Community Discussion
No community discussion yet for this question.