WBJECA 2025 — Computer PYQ
WBJECA | Computer | 2025which of the following statements about RAM (Random Access Memory) is correct?
Choose the correct answer:
- A.
Type of non-volatile memory used for permanent data storage.
- B.
Retains data even when the power is turned off.
- C.
Volatile memory used for temporary storage during program execution.
(Correct Answer) - D.
Can only be read but not written to.
Volatile memory used for temporary storage during program execution.
Explanation
RAM (Random Access Memory) is a type of primary computer memory. It acts as the "working memory" for a computer, providing fast access to data currently being used by the processor to run applications and the operating system.
To understand why the other options are incorrect, it is helpful to understand the core characteristics of RAM:
Volatile Nature: RAM is volatile, meaning it requires a continuous flow of electricity to maintain the data stored within it. If the power is interrupted, the data is lost.
StateData={Maintained,Lost,amp;if Power is ONamp;if Power is OFF
Read/Write Capability: Unlike ROM (Read-Only Memory), RAM allows both reading and writing operations, which is essential for the dynamic nature of running software.
OperationAccess=Read+Write
Because RAM is highly dynamic, the relationship between its capacity and the efficiency of program execution can be summarized as:
ExecutionSpeed∝CapacityRAM
In contrast, options (A) and (B) describe non-volatile memory (like Hard Drives or SSDs), and option (D) describes Read-Only Memory (ROM).

