InterviewSolution
Saved Bookmarks
| 1. |
What is a computer memory? |
|
Answer» Computer memory is the storage space in the computer, where data and instructions are stored. There are two types of accessing methods to access (store or retrieve) the memory. They are sequential access and random access. In sequential access, thd memory is accessed in an orderly manner from starting to end. But, in random access, any byte of memory can be accessed directly without navigating through previous bytes. |
|