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. External Memory

  2. I/O Memory

  3. ROM

  4. Buffer Memory

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

Buffer memory temporarily stores data being transferred between devices of different speeds. The CPU quickly sends print output to the buffer, then immediately continues processing other tasks while the buffer slowly feeds data to the printer. This prevents CPU idle time.

Multiple choice
  1. bytes

  2. program

  3. registers

  4. bits

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

Computer memory stores both data and programs (instructions). The CPU fetches program instructions from memory to execute operations. Bytes and bits are units of measurement, while registers are CPU components, not memory contents.

Multiple choice
  1. Gallium arsenide (GaAs)

  2. Metal-oxide semiconductor (MOS)

  3. Silicon

  4. Germanium

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

Bipolar semiconductor chips (using ECL or TTL logic) are fast but expensive and power-hungry, making them suitable for ALU operations where speed is critical. MOS (Metal-Oxide Semiconductor) technology is slower but much cheaper, allows high-density integration, and is ideal for large primary memory (RAM) storage. Silicon and Germanium are raw materials, not specific technologies.

Multiple choice
  1. 5 ½�

  2. 8�

  3. 3 ½�

  4. 2 ½�

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

IBM's PS/2 line used the newer 3.5 inch diskette format, which became the industry standard replacing the older 5.25 inch disks. The 3.5 inch diskette came in a rigid plastic case with a sliding metal shutter, offering better protection than the flexible 5.25 inch disks.

Multiple choice
  1. track

  2. sector

  3. cluster

  4. None of these

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

A sector is the smallest addressable unit on a hard disk, typically 512 bytes. Tracks are concentric circles, clusters are groups of sectors, making sectors the fundamental storage unit.

Multiple choice
  1. file

  2. network

  3. memory

  4. disk

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

RAM (Random Access Memory) is a type of computer memory that stores data and machine code currently being used. It is volatile memory, not a file, network, or disk storage.

Multiple choice
  1. floppy

  2. CD

  3. hard sectored

  4. soft sectored

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

Hard sectored disks have sector markings physically encoded on the disk surface, fixing the number and position of sectors. Soft sectored disks determine sector boundaries magnetically during formatting, allowing more flexibility. The question asks for fixed sectors, which describes hard sectored disks.

Multiple choice
  1. Terabyte

  2. Gigabyte

  3. Exabyte

  4. Yottabyte

  5. Zettabyte

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

1 YB = 10248 bytes and is bigger than terabyte. But, it is the highest term in unit of Information measurement. So, this is the correct answer.

Multiple choice
  1. A structure allocates one common storage space for all its members.

  2. A union allocates storage space for all its members separately.

  3. A structure occupies lower memory space than union.

  4. We can access only one member of union at a time.

  5. All of the above

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

The statement is true about union. We can access only one member of union at a time because union allocates one common storage space for all its members.