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 operating systems
  1. Series Advanced Technology Attachment

  2. Single AT Attachment

  3. Simple Advanced Technology Attachment

  4. Serial Advanced Technology Attachment

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

SATA stands for Serial Advanced Technology Attachment. It is a computer bus interface that connects host bus adapters to mass storage devices like hard drives and SSDs. The 'Serial' refers to the data transfer method using serial communication, which replaced the older Parallel ATA (PATA) standard.

Multiple choice technology operating systems
  1. Reliable Access Memory

  2. Recent Access Memory

  3. Random Access Memory

  4. Randam Available Memory

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

RAM stands for Random Access Memory, which allows data to be accessed in any random order rather than sequentially. 'Reliable' and 'Recent' are incorrect - the key characteristic is the ability to access any memory location directly. Option D has a typo ('Randam').

Multiple choice technology operating systems
  1. Universal Simple Bus

  2. Universal Serial Bus

  3. Unique Serial Bus

  4. Under Storage bus

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 between computers and devices. It uses serial communication, not simple or unique connections. Option D incorrectly uses lowercase 'bus'.

Multiple choice technology operating systems
  1. Hard Disk Drive

  2. Hard Device Drive

  3. Hard Device

  4. Hard Disk Device

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

HDD stands for Hard Disk Drive, a data storage device using magnetic storage. 'Device' in options B and D is incorrect - the middle term must be 'Disk'. Option C is incomplete.

Multiple choice technology operating systems
  1. Dynamic RAM

  2. Dual RAM

  3. Device RAM

  4. Durable RAM

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

DRAM stands for Dynamic RAM, which requires periodic refreshing to maintain data. This is different from static RAM (SRAM). The key characteristic is that it's 'Dynamic', not Dual, Device, or Durable.

Multiple choice technology operating systems
  1. 1 A dummy device to represent memory

  2. 2 A dummy device to represent the processor

  3. 3 A dummy device to provide infinite number of zeros

  4. 4 None

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

/dev/zero is a special device file that provides an infinite stream of null (zero) bytes when read. It is commonly used for initializing files with zeros, testing buffer operations, or creating memory dumps. The device always returns zeros and never reaches end-of-file.

Multiple choice technology operating systems
  1. 1 A memeory shared between kernel & devices

  2. 2 A memory shared between root user and ordinary user

  3. 3 A memory shared across processes

  4. 4 Harddisk

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

Shared memory is an Inter-Process Communication (IPC) mechanism that allows multiple processes to access the same segment of physical memory, providing a fast way to exchange data without copying it between processes.

Multiple choice technology operating systems
  1. 1 They never releases the memory utilized

  2. 2 They release the memory but kernel does not use them

  3. 3 Since they are running

  4. 4 It’s a false statement

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

Process virtual memory size can grow due to heap allocation and memory-mapped files, but the kernel does not typically shrink a process's virtual memory space even when memory is freed. This is because memory is released back to the process's internal free list, not necessarily to the system. Option B captures this concept.

Multiple choice technology operating systems
  1. 1 Use getmemory()

  2. 2 Use sysctl()

  3. 3 Use freemem()

  4. 4 Use malloc()

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

In Unix-like systems, sysctl() is a system call used to examine and modify kernel parameters, including hardware information like total physical memory. getmemory and freemem are not standard POSIX system calls for this purpose.

Multiple choice technology enterprise content management
  1. A school bag

  2. Your "In Box"

  3. Secured and managed storage location of electronic documents

  4. A storage cabinet for keeping paper files

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

A Document Repository is a secured and managed storage location for electronic documents. It provides centralized control, version management, and security for digital files. A school bag, physical storage cabinet, or inbox are not formal document management systems.

Multiple choice technology operating systems
  1. 128 MB

  2. 256 MB

  3. 512 MB

  4. 1 GB

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

The minimum RAM requirement for Windows Server 2003 Enterprise Edition installation was 128 MB. However, this was the bare minimum - Microsoft recommended 256 MB or more for acceptable performance in production environments. The 128 MB requirement was for installation only, not practical operation.

Multiple choice technology operating systems
  1. Really Accessable Memory

  2. Real Access Memory

  3. Random Available Mode

  4. Random Access Memory

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

RAM stands for Random Access Memory, which allows data to be read and written in any order. The other options are incorrect expansions of the acronym RAM.

Multiple choice technology operating systems
  1. Really Accessable Memory

  2. Real Access Memory

  3. Random Available Mode

  4. Random Access Memory

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

RAM stands for Random Access Memory, a type of computer memory that allows data items to be read or written in almost the same amount of time regardless of the physical location of data inside the memory. The other options are incorrect expansions.

Multiple choice technology databases
  1. parameter files

  2. control files

  3. redo logs

  4. data files

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

Oracle control files are critical metadata files that record the physical structure of the database. They store the names and locations of all physical database components including data files, redo log files, and tablespace information. Parameter files contain initialization parameters, redo logs store transaction changes, and data files hold actual table data - only control files track component locations.

Multiple choice technology programming languages
  1. Persistent

  2. Dynamic

  3. Static

  4. All of the above

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

Lookup transformations support three cache types: Static (default, loads entire cache), Dynamic (updates cache during session), and Persistent (cache saved to disk for reuse). These optimize lookup performance for different use cases.