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
-
index register
-
program counter
-
memory address register
-
instruction registers
-
External Memory
-
I/O Memory
-
ROM
-
Buffer Memory
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.
-
bytes
-
program
-
registers
-
bits
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.
-
Gallium arsenide (GaAs)
-
Metal-oxide semiconductor (MOS)
-
Silicon
-
Germanium
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.
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.
-
Mass memory
-
Internal memory
-
Non-volatile memory
-
PROM
-
track
-
sector
-
cluster
-
None of these
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.
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.
-
floppy
-
CD
-
hard sectored
-
soft sectored
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.
-
Terabyte
-
Gigabyte
-
Exabyte
-
Yottabyte
-
Zettabyte
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.
-
Double Hashing
-
Linear Hashing
-
Buckets
-
Probe Sequence
-
Dynamic Hashing
B
Correct answer
Explanation
It is a dynamically updateable disk based index structure which implements a hashing scheme and grows or shrinks one bucket at a time.
-
Mirroring
-
Data stripping
-
Parity checking
-
Partitioned tables
-
None of these
B
Correct answer
Explanation
Data stripping application of RAID technology takes data that needs to be stored, and distributes it evenly between two or more hard drives.
-
RAM
-
ROM
-
EPROM
-
PROM
-
None of these
D
Correct answer
Explanation
It is programmed at the manufacturing process.
-
auto
-
extern
-
static
-
register
-
none of the above
D
Correct answer
Explanation
register variables are stored in register memory.
register is a storage specifier used to enable faster access of a variable.
-
A structure allocates one common storage space for all its members.
-
A union allocates storage space for all its members separately.
-
A structure occupies lower memory space than union.
-
We can access only one member of union at a time.
-
All of the above
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.