Computer Science - Computer Fundamentals - Discussion

Discussion Forum : Computer Fundamentals - Section 12 (Q.No. 31)
31.
Which memory stores the values of variables.
SAM
ROM
RAM
PROM
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
2 comments Page 1 of 1.

HARI TARUN said:   5 years ago
The answer is wrong because RAM is Random Access Memory and ROM is a Read-Only Memory.

The answer is ROM so, option A is correct answer.

Subrat kumar nahak said:   5 years ago
Variables are usually stored in RAM. This is either on the heap (e.g. All global variables will usually go there) or on the stack (all variables declared within a method/function usually go there). Stack and Heap are both RAM, just different locations.

Post your comments here:

Your comments will be displayed after verification.