All Exams  >   Bank Exams  >   Computer Awareness for Competitive Exams  >   All Questions

All questions of Computer Memory for Bank Exams Exam

1 Crore+ students have signed up on EduRev. Have you? Download the App

Which memory acts as a buffer between CPU and main memory?
  • a)
    RAM
  • b)
    ROM
  • c)
    Cache
  • d)
    Storage
  • e)
    Register
Correct answer is option 'C'. Can you explain this answer?

The correct answer is option 'C': Cache.

Cache memory acts as a buffer between the CPU (Central Processing Unit) and the main memory. It is a small, high-speed memory that stores frequently accessed data and instructions. The primary purpose of cache memory is to improve the overall performance of the computer system by reducing the average time taken to access data from the main memory.

Here is a detailed explanation of how cache memory works as a buffer between the CPU and main memory:

1. Introduction to Cache Memory:
Cache memory is a small but very fast memory that is located closer to the CPU than the main memory. It stores copies of frequently accessed instructions and data. The cache memory is much faster than the main memory, which helps reduce the CPU's waiting time for data retrieval.

2. Principle of Locality:
Cache memory works based on the principle of locality, which states that programs tend to access a small portion of the available memory at any given time. There are two types of locality: temporal locality and spatial locality.

- Temporal Locality: This refers to the reuse of recently accessed data or instructions. If a particular memory location is accessed, it is likely that it will be accessed again in the near future.
- Spatial Locality: This refers to accessing data or instructions that are physically close to the recently accessed memory location. When the CPU accesses a particular memory location, it is likely to access nearby memory locations as well.

3. Cache Hierarchy:
Modern computer systems typically have multiple levels of cache memory, known as a cache hierarchy. The cache hierarchy consists of several levels of cache, with each level being larger but slower than the previous level. The cache hierarchy helps to bridge the speed gap between the CPU and the main memory.

4. Cache Operation:
When the CPU needs to read data or instructions, it first checks the cache memory. If the required information is present in the cache (cache hit), it can be quickly retrieved, saving time compared to accessing the main memory. If the required information is not present in the cache (cache miss), a slower access to the main memory is required to retrieve the data or instructions. The cache is then updated with the newly accessed data, so that it can be quickly retrieved if needed again in the future.

5. Cache Organization:
Cache memory is organized into cache lines or cache blocks, which are small chunks of data or instructions. When a cache line is loaded, it brings in multiple memory locations that are physically close to the requested location, taking advantage of spatial locality.

In conclusion, cache memory acts as a buffer between the CPU and main memory by storing frequently accessed data and instructions. It helps reduce the average access time and improves the overall performance of the computer system.

Memory is made up of ______.
  • a)
    Set of wires
  • b)
    Set of circuits
  • c)
    a Large number of cells
  • d)
    Set of optical fiber
  • e)
    None of these
Correct answer is option 'C'. Can you explain this answer?

Kabir Verma answered
Bits are placed in a two-dimensional grid and makeup memory. The memory cell is the key component of a computer's memory. One binary bit of data is kept in the memory cell, an electrical circuit. There are a large number of cells in memory.

What is the name of the primary folder on a storage device?
  • a)
    Platform
  • b)
    Root Directory
  • c)
    Interface
  • d)
    Device Driver
  • e)
    Soft Driver
Correct answer is option 'B'. Can you explain this answer?

Root Directory

The primary folder on a storage device is called the root directory. It is the highest level directory in a file system hierarchy and serves as the starting point for accessing and organizing all other files and directories within the storage device.

Explanation:

The root directory is the top-level directory in a file system structure. It is represented by a forward slash ("/") or a backslash ("\") depending on the operating system. The root directory is named so because it is the base or root of the entire file system.

Key Points:

- The root directory is the first directory created when a storage device is formatted or initialized.
- It contains all other directories, subdirectories, and files within the file system.
- In Windows operating systems, the root directory is typically represented by the drive letter followed by a backslash, such as "C:\" for the root directory of the C: drive.
- In Unix-like operating systems, the root directory is denoted by a forward slash ("/").
- The root directory is essential for navigating and accessing files and directories within a storage device.
- All other directories and files are organized hierarchically within the root directory and its subdirectories.
- The root directory can be thought of as the starting point or main directory from which the entire file system branches out.

Example:

For example, let's consider a storage device with the following directory structure:

```
/
├── home
│ ├── user1
│ └── user2
├── documents
│ ├── work
│ └── personal
└── programs
├── system
└── applications
```

Here, the root directory is represented by the forward slash ("/"). From the root directory, we can access the "home" directory, "documents" directory, and "programs" directory. These directories, in turn, contain further subdirectories and files.

Conclusion:

In summary, the primary folder on a storage device is called the root directory. It serves as the highest level directory in a file system hierarchy and provides the foundation for organizing and accessing all other files and directories within the storage device.

In which type of memory, once the program or data is written, it cannot be changed?
  • a)
    EPROM
  • b)
    PROM
  • c)
    EEPROM
  • d)
    RAM
  • e)
    None of these
Correct answer is option 'B'. Can you explain this answer?

Prateek Datta answered
Memory types and their properties

There are several types of memory used in computer systems, each with its own unique properties. The following are the most common types of memory:

- RAM (Random Access Memory): This type of memory is used by the computer to store data and programs that are currently in use. RAM is volatile, which means that its contents are lost when the computer is turned off or restarted.
- ROM (Read-Only Memory): This type of memory is used to store data that is essential for the operation of the computer, such as the BIOS (Basic Input/Output System). The contents of ROM cannot be changed.
- PROM (Programmable Read-Only Memory): This type of memory is similar to ROM, but it can be programmed once by the user.
- EPROM (Erasable Programmable Read-Only Memory): This type of memory can be programmed and erased multiple times using ultraviolet light.
- EEPROM (Electrically Erasable Programmable Read-Only Memory): This type of memory can be programmed and erased electronically.

Answer explanation

The correct answer to the given question is option 'B', PROM (Programmable Read-Only Memory). PROM is a type of memory that can be programmed once by the user, but cannot be changed afterwards. Once the program or data is written to PROM, it remains there permanently. This makes PROM ideal for applications where the data or program needs to be stored permanently and cannot be changed, such as in electronic devices that require firmware.

RAM, EPROM, and EEPROM are not the correct answers to the question, as they all allow data to be changed or erased. RAM is volatile, which means its contents are lost when the computer is turned off or restarted. EPROM and EEPROM can be reprogrammed and erased multiple times.

Conclusion

In conclusion, PROM is a type of memory that is used to store data or programs permanently and cannot be changed afterwards. The other types of memory, such as RAM, EPROM, and EEPROM, allow data to be changed or erased.

The two kinds of main memory are ____________.
  • a)
    ROM and RAM
  • b)
    Primary and secondary
  • c)
    Floppy disk and hard disk
  • d)
    Direct and sequential
  • e)
    Software and Hardware
Correct answer is option 'A'. Can you explain this answer?

Kabir Verma answered
Main memory can be divided into two main types viz., Random Access Memory (RAM), and Read-only memory (ROM), and each of these is divided into further sub-types.

Which of the following is used to transfer data between the processor (CPU) and memory?
  • a)
    Cache
  • b)
    TLB
  • c)
    Buffer
  • d)
    Registers
  • e)
    RAM
Correct answer is option 'D'. Can you explain this answer?

Arindam Roy answered
Transfer of Data Between CPU and Memory

The transfer of data between the processor (CPU) and memory is a crucial process in computer systems. It allows the CPU to access and manipulate data stored in memory, which is necessary for the execution of programs and tasks. Several components play a role in this data transfer process, but one of the primary components involved is registers.

Registers
- Registers are small, high-speed storage units located within the CPU. They are used to hold instructions and data that the CPU needs to access quickly.
- Registers are directly connected to the CPU and provide fast access to data, enabling efficient data transfer between the CPU and memory.
- They store data temporarily during calculations and operations, ensuring that the CPU has immediate access to the necessary information it requires for processing.
- Registers are an essential part of the CPU's architecture and are designed to perform specific functions, such as storing operands, holding intermediate results, and keeping track of program execution.
- The number and types of registers present in a CPU vary depending on the architecture and design of the processor.

Other Components Involved in Data Transfer
While registers are crucial for data transfer between the CPU and memory, other components also play a role in facilitating this process. These components include:
- Cache: A cache is a small, high-speed memory unit that resides between the CPU and main memory. It stores frequently accessed data and instructions, allowing the CPU to access them quickly without having to access the slower main memory.
- TLB (Translation Lookaside Buffer): The TLB is a cache for virtual-to-physical address translation. It stores recently used address translations, improving the efficiency of memory access.
- Buffer: A buffer is a temporary storage area used to hold data during the transfer between the CPU and memory. It helps in synchronizing the different speeds at which the CPU and memory operate.
- RAM (Random Access Memory): RAM is the main memory in a computer system. It stores data and instructions that are currently being used by the CPU. Data transfer between the CPU and RAM occurs through memory bus connections.

Conclusion
In summary, while registers are primarily responsible for storing and transferring data between the CPU and memory, other components like cache, TLB, buffer, and RAM also play a crucial role in facilitating efficient data transfer. These components work together to ensure that the CPU can access and manipulate data stored in memory quickly, enabling the smooth execution of programs and tasks.

_______ is a type of computer memory that can hold saved data even if the power is turned off.
  • a)
    Volatile memory
  • b)
    Nonvolatile memory
  • c)
    Sequential Memory
  • d)
    Direct Storage
  • e)
    Input Memory
Correct answer is option 'B'. Can you explain this answer?

Moumita Kaur answered
Nonvolatile Memory:
Nonvolatile memory is a type of computer memory that can retain saved data even when the power is turned off. This is in contrast to volatile memory, which requires a constant power source to maintain stored information.

Examples of Nonvolatile Memory:
- One common example of nonvolatile memory is ROM (Read-Only Memory). ROM stores data that is permanently written during the manufacturing process and does not require power to retain this information.
- Another example is flash memory, which is commonly used in USB drives, solid-state drives, and memory cards. Flash memory retains data even when the power is disconnected.

Importance of Nonvolatile Memory:
Nonvolatile memory is crucial for storing important data that needs to be preserved even when the device is powered off. This type of memory ensures that vital information such as system settings, firmware, and user data remains intact and accessible.

Applications of Nonvolatile Memory:
- Nonvolatile memory is used in devices like smartphones, computers, digital cameras, and other electronic gadgets to store essential data.
- It is also employed in embedded systems, IoT devices, and industrial applications where data integrity is critical.

Conclusion:
Nonvolatile memory is a fundamental component of modern computing systems, providing the ability to retain data without a continuous power supply. Its applications span a wide range of devices and industries, highlighting its importance in preserving data integrity.

The secondary storage units can only store data; they are unable to do ____________.
  • a)
    Arithmetic operations
  • b)
    Logic operations
  • c)
    Fetch operations
  • d)
    All the above
  • e)
    None of the above
Correct answer is option 'D'. Can you explain this answer?

Rohan Sengupta answered
Arithmetic, logic, and fetching operations are not available on secondary storage systems such as flash memory, hard drives, floppy discs, magnetic tape, paper tape, etc.

________ is a temporary memory bank where your computer stores data it's currently working on and keeps data easily accessible so that it can be retrieved quickly, meaning your processor doesn't have to go into long-term storage to complete immediate processing tasks.
  • a)
    Storage
  • b)
    RAM
  • c)
    ROM
  • d)
    Joystick
  • e)
    Scanner
Correct answer is option 'B'. Can you explain this answer?

Kabir Verma answered
RAM is a temporary memory bank where your computer stores data it's currently working on. RAM keeps data easily accessible so that it can be retrieved quickly, meaning your processor doesn't have to go into long-term storage to complete immediate processing tasks.

Memory is internal storage media of a computer that has several names such as majorly categorized into _________ types.
  • a)
    Two
  • b)
    Three
  • c)
    Four
  • d)
    Six
  • e)
    Eight
Correct answer is option 'A'. Can you explain this answer?

Kavya Saxena answered
Memory is internal storage media of computer that has several names such as majorly categorized into two types, 1. Primary Memory2.Secondary Memory.

_______ is the place where data is held in an electromagnetic or optical form for access by a computer processor.
  • a)
    Storage
  • b)
    Memory
  • c)
    Hardware
  • d)
    Software
  • e)
    Input
Correct answer is option 'A'. Can you explain this answer?

Storage in Computing

Storage in computing refers to the place where data is held in an electromagnetic or optical form for access by a computer processor. It is an essential component of a computer system that enables users to store and retrieve data and programs quickly and efficiently.

Types of Storage

There are primarily two types of storage in computing:

1. Primary Storage: Primary storage, also known as main memory, is the place where data and programs are temporarily stored while being processed by the computer processor. It is volatile in nature, which means that the data is lost when the power is turned off. Examples of primary storage devices include RAM (Random Access Memory) and cache memory.

2. Secondary Storage: Secondary storage, also known as auxiliary storage, is the place where data is permanently stored even when the power is turned off. It is non-volatile in nature, which means that the data remains intact even when the power is turned off. Examples of secondary storage devices include hard disk drives, solid-state drives, optical discs, and USB flash drives.

Importance of Storage

Storage is a crucial component of a computer system because:

1. It enables users to store and retrieve data and programs quickly and efficiently.

2. It provides a way to preserve data even when the power is turned off.

3. It allows users to expand the storage capacity of their computer system by adding external storage devices.

Conclusion

In summary, storage is an integral part of a computer system that enables users to store and retrieve data and programs quickly and efficiently. There are two types of storage: primary storage and secondary storage. Primary storage is volatile, while secondary storage is non-volatile. Storage is essential for preserving data and expanding the storage capacity of a computer system.

____________ is a non-volatile memory chip used for storage and transferring data between a personal computer (PC) and digital devices.
  • a)
    Optical Disk
  • b)
    Hard Drive
  • c)
    Magnetic Tape
  • d)
    Floppy Disk
  • e)
    Flash Memory
Correct answer is option 'E'. Can you explain this answer?

Nikita Singh answered
Flash memory is a non-volatile memory chip used for storage and transferring data between a personal computer (PC) and digital devices. It can be electronically reprogrammed and erased. It is often found in USB flash drives, MP3 players, digital cameras, and solid-state drives.

The most frequently used instructions of a computer program are likely to be fetched from ________________ memory.
  • a)
    Primary
  • b)
    Secondary
  • c)
    Cache
  • d)
    Register
  • e)
    Virtual
Correct answer is option 'C'. Can you explain this answer?

Nikita Singh answered
The information that the CPU is likely to need next is stored in the cache memory together with program instructions and data that are frequently employed in the functioning of programs. Instead of getting data from the computer's main memory, the CPU can quickly access this information from the cache.

__________ is a type of disc storage that contains a thin, flexible disk of a magnetic storage media inside of a square or nearly square plastic case that is lined with fabric to filter out dust from the spinning disk.
  • a)
    Optical Disk
  • b)
    Hard Drive
  • c)
    Magnetic Tape
  • d)
    Floppy Disk
  • e)
    Flash Memory
Correct answer is option 'D'. Can you explain this answer?

Nikita Singh answered
A floppy disk or floppy diskette, often known as a floppy or a diskette, is a type of disc storage that contains a thin, flexible disk of a magnetic storage media inside of a square or nearly square plastic case that is lined with fabric to filter out dust from the spinning disk.

Chapter doubts & questions for Computer Memory - Computer Awareness for Competitive Exams 2024 is part of Bank Exams exam preparation. The chapters have been prepared according to the Bank Exams exam syllabus. The Chapter doubts & questions, notes, tests & MCQs are made for Bank Exams 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests here.

Chapter doubts & questions of Computer Memory - Computer Awareness for Competitive Exams in English & Hindi are available as part of Bank Exams exam. Download more important topics, notes, lectures and mock test series for Bank Exams Exam by signing up for free.

Top Courses Bank Exams

Signup to see your scores go up within 7 days!

Study with 1000+ FREE Docs, Videos & Tests
10M+ students study on EduRev