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. Contents in RAM will be erased.

  2. Contents in RAM will be ignored.

  3. Contents in NVRAM will be erased.

  4. Contents in NVRAM will be ignored.

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

Configuration register 0x2142 tells the router to ignore the contents of NVRAM (startup-config) during boot. This is used in password recovery procedures to bypass the startup configuration, allowing access to the router without knowing the enable password.

Multiple choice
  1. RAM

  2. ROM

  3. Flash

  4. NVRAM

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

Cisco IOS is stored in Flash memory, which is non-volatile EEPROM. During bootup, IOS is copied from Flash to RAM where it actually runs. ROM contains bootstrap code, NVRAM stores startup-config, and RAM runs the operating system but doesn't store it persistently.

Multiple choice
  1. Adding more components to your network.

  2. Protecting your data by copying it from the original source to a different destination.

  3. Filtering old data from the new data.

  4. Accessing data on the tape.

  5. None of the above

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

Yes it's correct choice.Yes when power cuts are there suddenly the data is lost . So it is preferred to save the data into another location .

Multiple choice
  1. HFS

  2. FAT32

  3. NTFS

  4. MFS

  5. HPFS

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

NTFS (New Technology File System) is a proprietary file system developed by Microsoft Corporation for its Windows NT line of operating systems, beginning with Windows NT 3.1 and Windows 2000, including Windows XP, Windows Server 2003, and all their successors to date.

Multiple choice
  1. Increasing SORT_AREA_SIZE

  2. Decreasing SORT_AREA_RETAINED_SIZE

  3. Increasing the SORT_MEMORY_ALLOCATED parameter

  4. Altering SORT_AREA_SIZE dynamically based on available memory within SGA_MAX_SIZE

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

SORT_AREA_SIZE determines how much memory is allocated for each sort operation. Increasing this parameter allows more sorts to complete entirely in memory, reducing the need to spill to disk (which is much slower). SORT_AREA_RETAINED_SIZE controls memory retained after sort completion and doesn't affect disk sort frequency.

Multiple choice
  1. Redundancy through striping

  2. Performance through mirroring

  3. Redundancy through mirroring

  4. Performance through striping

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

The correct answer is C because ASM disk groups provide redundancy through mirroring - they can maintain multiple copies of data (normal/high redundancy) to protect against disk failures. Option A is incorrect because striping is for performance, not redundancy. Option B is incorrect because mirroring provides redundancy, not performance. Option D is incorrect because striping improves performance, not redundancy.

Multiple choice
  1. X-rays

  2. Microwaves

  3. Ultraviolet rays

  4. Visible light

  5. Gamma radiations

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

Once programmed, an EPROM can be erased by exposing it to strong ultraviolet light source (such as from a mercury-vapor light). EPROMs are easily recognizable by the transparent fused quartz window in the top of the package, through which the silicon chip is visible, and which permits exposure to UV light during erasing.

Multiple choice
  1. RAM

  2. ROM

  3. Cache memory

  4. Control store

  5. Hard disk

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

The microcode usually does not reside in the main memory, but in a special high speed memory, called the control store. It might be either read-only or read-write memory. In the latter case the microcode would be loaded into the control store from some other storage medium as part of the initialization of the CPU, and it could be altered to correct bugs in the instruction set, or to implement new machine instructions.

Multiple choice
  1. To exploit the temporal locality of reference

  2. To read more data into the memory

  3. Belady's anomaly

  4. To reduce the miss penalty

  5. To reduce the hit ratio

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

Temporal locality: If at one point in time a particular memory location is referenced, then it is likely that the same location will be referenced again in the near future. There is a temporal proximity between the adjacent references to the same memory location. In this case it is common to make efforts to store a copy of the referenced data in special memory storage, which can be accessed faster.

Multiple choice
  1. Buffer cache

  2. Library cache

  3. Data dictionary cache

  4. Redo log buffer cache

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

The data dictionary cache is part of the System Global Area (SGA) that stores data dictionary information including user privileges, object definitions, and security attributes. When a server process needs to validate user privileges, it queries this cached information rather than accessing the physical data dictionary tables on disk, which significantly improves performance. The buffer cache stores database blocks, the library cache holds SQL and PL/SQL code, and the redo log buffer stores redo entries - none of these contain privilege validation data.