Computer Knowledge

Computer Memory and Storage

2,121 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 general knowledge science & technology
  1. 4024MB

  2. 4000MB

  3. 4096MB

  4. 4128MB

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

A 32-bit CPU can address 2^32 bytes of memory, which equals 4,294,967,296 bytes or exactly 4096 MB (4 GB). This is a fundamental limit of 32-bit architecture. The incorrect options (4024MB, 4000MB, 4128MB) are all close but not the correct mathematical value. This is why 32-bit systems cannot utilize more than 4GB of RAM.

Multiple choice general knowledge sports
  1. CPU

  2. RAM

  3. ROM

  4. Network Interface Card

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

RAM (Random Access Memory) allows data to be accessed in constant time regardless of physical location - any memory cell can be accessed directly. CPU processes instructions, ROM is read-only memory, and NIC handles network connections.

Multiple choice general knowledge
  1. Newly Transfered File Structure

  2. Non Transferrable File System

  3. Network Technology File System

  4. New Technology File System

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice general knowledge science & technology
  1. dalloc

  2. calloc

  3. malloc

  4. new

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

In C++, the 'new' keyword is the standard operator for dynamic memory allocation. While malloc and calloc are C functions that can be used in C++, 'new' is the preferred C++ approach because it calls constructors and is type-safe. 'dalloc' is not a standard memory allocation function in C or C++.

Multiple choice general knowledge science & technology
  1. True

  2. False

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

When optical media like CDs and DVDs are closed (finalized), they become read-only and cannot be modified or written to again. This makes them immune to virus infection after finalization, provided no infected files were already on them when burned. This is a key advantage of optical media for long-term backups.

Multiple choice general knowledge math & puzzles
  1. Dots per Inch

  2. Drives per Inch

  3. Disks per Inch

  4. None

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

DPI stands for Dots Per Inch, a measure of spatial printing or video dot density in digital imaging. It indicates how many individual dots can be placed in a one-inch line.

Multiple choice general knowledge math & puzzles
  1. Redundant Array of Inexpensive Dots

  2. Redundant Array of Inexpensive Drives

  3. Reasonable Array of Inexpensive Disks

  4. Redundant Array of Inexpensive Disks

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

RAID stands for Redundant Array of Inexpensive Disks, a technology that combines multiple disk drives for improved performance, reliability, and fault tolerance in data storage.

Multiple choice general knowledge science & technology
  1. Universal Side Bus

  2. Universal Serial Bus

  3. Universe Serial Bus

  4. Universal Serial Byte

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

USB stands for Universal Serial Bus, an industry standard for cables, connectors, and communication protocols that connect computers to peripheral devices like keyboards, mice, and storage drives.

Multiple choice general knowledge sports
  1. new file system

  2. network for system

  3. network file system

  4. not for sharing

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

NFS stands for Network File System, a distributed file system protocol that allows a user on a client computer to access files over a network much like local storage. It's a fundamental protocol in Unix/Linux networking.

Multiple choice general knowledge science & technology
  1. It is temporary memory

  2. You can make changes to it

  3. You cannot make changes to it

  4. All of the above

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

ROM (Read-Only Memory) is called 'read-only' because it contains permanent instructions that cannot be modified or erased under normal operation. Unlike RAM, ROM retains its contents without power and is used to store firmware and critical boot instructions.

Multiple choice general knowledge science & technology
  1. devices

  2. directories

  3. files

  4. ports

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

In Unix-like systems, devices are represented as files in the /dev directory. This allows uniform access to hardware using standard file operations. Directories organize the filesystem, ports are communication endpoints, and 'devices' is circular.

Multiple choice general knowledge science & technology
  1. Redundant Array of Independent Disks

  2. Reverse Array of Inexpensive Disks

  3. Redundant Array of Inexpensive Disks

  4. Redundant ArrayList of Inexpensive Disks

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

RAID stands for Redundant Array of Inexpensive Disks (though sometimes 'Independent' is used instead of 'Inexpensive'). Option A uses 'Independent' instead of 'Inexpensive,' option B incorrectly uses 'Reverse,' and option D incorrectly adds 'ArrayList.' The most common/original form uses 'Inexpensive.'