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 technology architecture
  1. it has a twist in it

  2. it has a red line along one edge

  3. it's wider than all the other ribbon cables

  4. it's white

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

Floppy drive ribbon cables have a distinctive twist near the connector end - typically 7-10 wires are twisted between the drive A and drive B connectors. This twist is unique to floppy cables. Option B (red line) is the pin-1 indicator found on all ribbon cables, not specific to floppies. Floppy cables are actually narrower (34 pins) than IDE cables (40 pins), and color varies.

Multiple choice technology architecture
  1. recovers lost clusters on the hard drive

  2. performs low-level formatting of the hard drive

  3. creates partitions on the hard drive

  4. fixes bad sectors on the hard drive

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

FDISK (Fixed Disk) is a DOS and Windows utility for creating and managing disk partitions - dividing a hard drive into logical sections that can be formatted separately. Option A describes CHKDSK/SCANDISK, option B describes low-level formatting tools, and option D describes bad sector marking performed during format or scandisk operations.

Multiple choice technology architecture
  1. a system for balancing the voltage coming out of the power supply

  2. a byte stored in the FAT to indicated remaining slots

  3. the last setting for controlling hard drive configuration of IDE drives in the CMOS

  4. an extra bit stored with data in RAM that is used to check for errors when the data is read back

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

Parity is an error-detection mechanism where an extra bit is added to each byte of data. The parity bit is set so that the total number of 1-bits is either always even (even parity) or always odd (odd parity). When data is read back, the parity is recalculated and compared to detect single-bit errors. Options A, B, and C describe voltage regulation, FAT entries, and CMOS settings respectively - unrelated to parity.

Multiple choice technology
  1. registry

  2. API

  3. CMOS

  4. kernel

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

The kernel is the core part of an operating system that remains in memory (RAM) at all times, managing CPU, memory, and hardware resources. The registry is a Windows configuration database, API is an interface for applications, and CMOS is BIOS configuration memory on the motherboard. The kernel is always memory-resident because it must handle every system call and hardware interaction. Terms like 'resident' mean staying in memory continuously.

Multiple choice technology
  1. RAM

  2. ROM

  3. the CPU

  4. the hard drive

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

BIOS firmware is stored in ROM (Read-Only Memory) chips on the motherboard, specifically in EEPROM or flash memory. ROM is non-volatile and retains its contents without power, unlike RAM which is volatile. The CPU executes BIOS code but doesn't store it. The hard drive stores the OS and applications, not the BIOS itself. ROM ensures BIOS is available immediately upon power-on for the boot process.

Multiple choice technology
  1. registry

  2. API

  3. CMOS

  4. kernel

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

The kernel is the core component of an operating system that resides in memory at all times. It manages CPU, memory, processes, and essential hardware operations. The registry (A) is a Windows database for configuration settings. API (B) refers to application programming interfaces for software communication. CMOS (C) is a memory chip that stores BIOS settings - not the operating system itself.

Multiple choice technology
  1. RAM

  2. ROM

  3. the CPU

  4. the hard drive

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

BIOS (Basic Input/Output System) firmware is stored in ROM (Read-Only Memory) chips on the motherboard. ROM is non-volatile memory that retains its contents without power and cannot be easily modified. RAM (A) is volatile memory cleared when power is lost. The CPU (C) is the processor that executes instructions. The hard drive (D) stores software and data, not the BIOS firmware itself.

Multiple choice technology architecture
  1. Suspend

  2. Standby

  3. Log off

  4. Hibernate.

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

Hibernate mode saves the complete system state (RAM contents) to the hard drive before powering down completely. Unlike Standby or Suspend modes which keep data in RAM and require continuous power, Hibernate allows you to fully power off and later resume exactly where you left off.

Multiple choice technology operating systems
  1. FDISK

  2. DISKPART

  3. FORMAT

  4. DEBUG

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

FDISK is the DOS utility used for creating, deleting, and managing disk partitions. FORMAT prepares existing partitions for use but cannot create or delete them, DISKPART is a more modern Windows command-line tool, and DEBUG is a low-level assembly debugger. FDISK is the classic partition management tool.

Multiple choice technology
  1. Personal Storage Tab

  2. Personal Storage Task

  3. Personal Storage Table

  4. Personal Store Tab

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

PST stands for Personal Storage Table, which is the file format used by Microsoft Outlook to store email messages, calendar items, and other data locally on your computer. It's the standard file extension for Outlook data files (.pst).

Multiple choice technology web technology
  1. serialization

  2. garbage collection

  3. assemblies

  4. overriding

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

Garbage collection is the automatic memory management technique in .NET framework that automatically reclaims memory occupied by objects that are no longer in use. Serialization is about object persistence, assemblies are deployment units, and overriding is a polymorphism concept - none relate to memory management.

Multiple choice technology operating systems
  1. Add a faster processor

  2. Add more RAM

  3. Defrag the hard drive

  4. Convert your disk to NTFS

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

Adding more RAM has traditionally been the most effective way to improve Windows performance. While CPU upgrades help, Windows is memory-intensive and RAM directly reduces disk paging. Defragmenting and NTFS conversion are maintenance tasks, not performance upgrades. This holds true for Vista as well.