Computer Knowledge

Computer Memory and Storage

2,477 Questions

Computer memory and storage questions test foundational knowledge of hardware, cache mapping, and data transfer mechanisms. Key areas include Direct Memory Access, analog recording, and RAID levels. This section is essential for candidates preparing for banking and government computer proficiency tests.

Cache memory mappingDirect memory accessRAID storage levelsHard disk technologyOptical media storageMemory addresses

Computer Memory and Storage Questions

Multiple choice
  1. Erasable & programmable read only memory

  2. Electrically programmable read only memory

  3. Erasable programmed read only memory

  4. Electrically programmed read only memory

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Correct Answer: Erasable & programmable read only memory

Multiple choice
  1. Direct

  2. Random

  3. Sequential

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Magnetic tape is a sequential access medium - data must be accessed in the order it was written. Unlike disks, tape cannot jump directly to any location. To reach specific data, you must fast-forward through all preceding content, making sequential access mandatory. Direct (Option A) and Random (Option B) access describe disk-based systems where any location can be reached directly.

Multiple choice
  1. Seek time

  2. Rotational delay

  3. Latency time

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Seek time is the time required for the disk's read/write head to move to the correct track where data is located. It's one component of total disk access time. Rotational delay (Option B) or latency (Option C) is the additional time waiting for the correct sector to rotate under the head. Seek time only measures the radial movement, not rotational positioning.

Multiple choice
  1. Mass memory

  2. Internal memory

  3. Non-volatile memory

  4. PROM

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Internal memory (RAM) is the primary memory that directly communicates with the CPU. It holds the programs and data currently being executed because the CPU can only directly access data in internal memory. Mass memory is secondary storage, non-volatile memory retains data without power, and PROM is a type of read-only memory.

Multiple choice
  1. a device which is not connected to CPU

  2. a device which is connected to CPU

  3. a direct access storage device

  4. an I/O device

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

An offline device is not connected to or under the direct control of the CPU. Offline devices operate independently and require manual intervention to connect or transfer data. Online devices remain connected and communicate directly with the CPU. The term specifically refers to the disconnected state.

Multiple choice
  1. volatile

  2. expensive

  3. small capacity

  4. programmable

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

RAM is called short-term memory because it is volatile - it loses all data when power is removed. This volatility makes it temporary storage for active programs and data. While RAM is expensive and has smaller capacity than secondary storage, its volatility is the key reason it's considered 'short' memory. Programmability is irrelevant to this classification.

Multiple choice
  1. speed at which data travels over the communication line

  2. memory capacity

  3. instruction execution time

  4. small initialization program to start up a computer

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Baud measures the number of signal units or symbols transmitted per second over a communication channel. It represents the rate at which data travels over the communication line. The other options are unrelated: memory capacity is measured in bytes, execution time in clock cycles or seconds, and a small initialization program is called a bootstrap loader.

Multiple choice
  1. Fixed partition

  2. The buddy system of partitioning

  3. Variable sized partition

  4. Horizontal partition

  5. Vertical partition

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The buddy system of partitioning allocates spaces in sizes of power of 2. There are two ways in which the buddy system allocates space. Suppose we have a hole which is the closest power of two, in that case, that hole is used for allocation. In case we do not have that situation then we look for the next power of 2 hole size, split it in two equal halves and allocate one of these. Because we always split the holes in two equal sizes, the two are "buddies". Hence, the name buddy system.

Multiple choice
  1. internal

  2. external

  3. universal

  4. none of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Internal fragmentation occurs when a memory partition is allocated to a process but the process doesn't use the entire block. The unused portion within the partition is wasted and cannot be allocated to other processes. This happens in fixed-size partition schemes.