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
-
Series Advanced Technology Attachment
-
Single AT Attachment
-
Simple Advanced Technology Attachment
-
Serial Advanced Technology Attachment
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.
-
Reliable Access Memory
-
Recent Access Memory
-
Random Access Memory
-
Randam Available Memory
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').
-
Universal Simple Bus
-
Universal Serial Bus
-
Unique Serial Bus
-
Under Storage bus
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'.
-
Hard Disk Drive
-
Hard Device Drive
-
Hard Device
-
Hard Disk Device
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.
-
Dynamic RAM
-
Dual RAM
-
Device RAM
-
Durable RAM
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.
-
1 A dummy device to represent memory
-
2 A dummy device to represent the processor
-
3 A dummy device to provide infinite number of zeros
-
4 None
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.
-
1 A memeory shared between kernel & devices
-
2 A memory shared between root user and ordinary user
-
3 A memory shared across processes
-
4 Harddisk
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.
-
1 They never releases the memory utilized
-
2 They release the memory but kernel does not use them
-
3 Since they are running
-
4 It’s a false statement
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.
-
1 Use getmemory()
-
2 Use sysctl()
-
3 Use freemem()
-
4 Use malloc()
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.
-
A school bag
-
Your "In Box"
-
Secured and managed storage location of electronic documents
-
A storage cabinet for keeping paper files
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.
-
128 MB
-
256 MB
-
512 MB
-
1 GB
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.
-
Really Accessable Memory
-
Real Access Memory
-
Random Available Mode
-
Random Access Memory
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.
-
Really Accessable Memory
-
Real Access Memory
-
Random Available Mode
-
Random Access Memory
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.
-
parameter files
-
control files
-
redo logs
-
data files
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.
-
Persistent
-
Dynamic
-
Static
-
All of the above
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.