Computer Organization and Architecture MCQ Quiz - Objective Question with Answer for Computer Organization and Architecture - Download Free PDF

Last updated on May 6, 2025

Getting a grip on Computer Organization and Architecture is made much easier with Computer Organization and Architecture MCQs. These questions cover a wide spectrum, from the basic structure of a computer to complex architectural designs. Regular interaction with Computer Organization and Architecture MCQs helps you understand both theoretical and practical aspects of this important subject. This way, Computer Organization and Architecture MCQs can serve as a key to unlocking your potential in computer science.

Latest Computer Organization and Architecture MCQ Objective Questions

Computer Organization and Architecture Question 1:

Which of the following option works according to the principle of locality of reference. 

  1. RAM
  2. Cache memory
  3. Magnetic Tape
  4. More than one of the above
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : Cache memory

Computer Organization and Architecture Question 1 Detailed Solution

The correct answer is Cache memory

Key Points

  • locality of reference is the tendency of a processor to access the same set of memory locations repetitively over a short period of time
  • There are two basic types of reference locality - temporal and spatial locality
    • Temporal locality refers to the reuse of resources, within a relatively small-time duration
    • Spatial locality refers to the use of data elements within relatively close storage locations
  • Cache needs high degree of locality of reference so that recently accessed pages or closely placed page are found in cache, this increases the cache hit rate which increases the performance of System
  • Locality of reference becomes crucial principle in Cache because cost of cache is very high, and size is small

Computer Organization and Architecture Question 2:

EBCDIC coding scheme uses ______ bits to code different characters.

  1. 4
  2. 8
  3. 16
  4. More than one of the above
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : 8

Computer Organization and Architecture Question 2 Detailed Solution

Extended Binary Coded Decimal Interchange Code is an eight-bit character encoding used mainly on IBM mainframe and IBM midrange computer operating systems.

EBCDIC was devised in 1963 and 1964 by IBM. It is an eight-bit character encoding, developed separately from the seven-bit ASCII encoding scheme.

Computer Organization and Architecture Question 3:

The IP address 135.0.10.27 belongs to address class ________?

  1. A
  2. B
  3. C
  4. More than one of the above
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : B

Computer Organization and Architecture Question 3 Detailed Solution

Looking at the first octet of an IP address, you can identify the class of that address.

 Class A : 1 - 127

Class B : 128 - 191

Class C : 192 - 223

Class D : 224 - 239

Class E : 240 - 254

In IP address 135.0.10.27, first octet is 135 which lies in range 128 - 191 of class B.

Computer Organization and Architecture Question 4:

Which of the following input device is used to convert the scanned images of typed or handwritten text into digital format?

  1. Light pen
  2. OCR
  3. Digitizer
  4. More than one of the above
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : OCR

Computer Organization and Architecture Question 4 Detailed Solution

The correct answer is OCR.

Key Points

  • Optical Character Recognition or abbreviated as OCR is an input device used to convert scanned images of handwritten text, and printed text or documents into digital format. Hence option 2 is correct.
  • It used both hardware and software such as a scanner to capture the text and software to process the data.
    • Hardware captures the text and the software converts the document into a two-colour (black and white) format in which the dark area is considered as text and a lighter area is considered as background.

Additional Information

  • MICR or Magnetic Ink Character Recognition is an input device used to read the text printed with magnetic ink. 
    • It is used in banks to verify checks and in other organizations for checking the authenticity of documents.
  • A Light pen is a light-sensitive device used to interact with the user interface by selecting the text or clicking the checkboxes on the screen.
  • A Digitizer is an input device with a stylus and is mainly used for drawing and creating graphics to display on the monitor.

Computer Organization and Architecture Question 5:

The process in which the DMA controller puts the CPU on hold for each byte of data to be transferred is called _______

  1. Page-fault
  2. Cycle stealing
  3. Buffering
  4. More than one of the above
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : Cycle stealing

Computer Organization and Architecture Question 5 Detailed Solution

Concept:

Direct memory access (DMA) is a feature of computer systems that allows certain hardware subsystems to access main system memory (random-access memory), independent of the central processing unit (CPU).

Types:

There are three modes of DMA operation:

Burst mode DMA:

  • CPU can be put on hold while the DMA transfer occurs and a full block of possibly hundreds or thousands of bytes can be moved
  • For the entire duration of the transfer, the CPU stays idle and the DMA controller and the peripheral device gets complete access to the system buses


Transparent mode:

  • It takes the most time to transfer a block of data, yet it is also the most efficient mode in terms of overall system performance
  • In transparent mode, the DMA controller transfers data only when the CPU is performing operations that do not use the system buses


Cycle stealing mode:

In this only one byte of data transferred in a single request, after one byte of data transfer, the control of the system bus is given back to the CPU transferring one byte of data per request, until the entire block of data has been transferred.

Important Point:

For byte-addressable one byte is a transfer for word addressable one word is transferred.

Top Computer Organization and Architecture MCQ Objective Questions

Which of the following is used in main memory?

  1. DDR
  2. DRAM 
  3. SRAM
  4. PRAM 

Answer (Detailed Solution Below)

Option 2 : DRAM 

Computer Organization and Architecture Question 6 Detailed Solution

Download Solution PDF

The correct answer is DRAM.

Key Points

  • DRAM:
    • It is dynamic random access memory and is widely used as a computer's main memory. Hence, Option 2 is correct.
    • Each DRAM memory cell is made up of a transistor and a capacitor within an integrated circuit, and a data bit is stored in the capacitor.
  • DDR-RAM:
    • It stands for Double Data Rate Synchronous Dynamic Random-Access Memory.
    • These are the computer memory that transfers the data twice as fast as regular chips like SDRAM chips because DDR memory can send and receive signals twice per clock cycle as a comparison.
  • SRAM:
    • It stands for Static Random Access Memory.
    • It is a form of a semiconductor.
    • It is widely used in microprocessors, general computing applications, and electronic devices.
    • The SRAM is volatile in nature which means the data stored in it gets all wiped out once the power supply is cut.
    • SRAM is comprised of flip-flops. 
  • PRAM:
    • In computer science, a parallel random-access machine is a shared-memory abstract machine.
    • As its name indicates, the PRAM is intended as the parallel-computing analogy to the random-access machine.

Permanent Memory of a computer is known as-

  1. RAM
  2. CD-ROM
  3. ROM
  4. CPU

Answer (Detailed Solution Below)

Option 3 : ROM

Computer Organization and Architecture Question 7 Detailed Solution

Download Solution PDF

The Correct Answer is ROM.

Key Points

  • The permanent memory of a computer is known as ROM(Read-only memory).
  • In computers and other electronic devices, read-only memory (ROM) is a form of non-volatile memory.
  • After the memory unit is manufactured, data contained in ROM cannot be electronically changed. Read-only memory, also known as firmware, is useful for storing software that is rarely updated during the life of the device.
  • Plug-in cartridges containing ROM can be used to distribute software applications (such as video games) for programmable computers.
  • Read-only memory refers to memory that is hard-wired and cannot be modified electronically after manufactures, such as a diode matrix or a mask ROM integrated circuit (IC).

Additional Information

  • The memory is permanently installed on your computer. This is a read-only memory. The working memory of a computer, also known as random-access memory. The hardware allows data to be passed through a device. 
  • Random-access memory (RAM) is a type of computer memory that allows data and machine code to be read and modified in any order. It is commonly used to store working data and machine code.
  • A CD-ROM is a data-containing optical compact disc that has been pre-pressed. CD-ROMs are a form of read-only memory that computers can read but not write to or delete.
  • The electronic circuitry that executes instructions in a computer programme is known as a central processing unit (CPU), also known as a central processor, main processor, or simply processor.

Which of the following operation is mainly performed by RAM?

  1. Read only
  2. Read and write
  3. Write only
  4. Depends on the system

Answer (Detailed Solution Below)

Option 2 : Read and write

Computer Organization and Architecture Question 8 Detailed Solution

Download Solution PDF
The term RAM refers to read and write memory, that is, you can both write data into RAM and read data from RAM. Most RAM is volatile, which means that it requires a steady flow of electricity to maintain its contents. Read-only memory (ROM) refers to computer memory on which data has been prerecorded. Once data has been written onto a ROM chip, it cannot be removed and can only be read.

Daisy wheel printer is what type a printer?

  1. Non impact
  2. Impact
  3. Laser
  4. Line printer

Answer (Detailed Solution Below)

Option 2 : Impact

Computer Organization and Architecture Question 9 Detailed Solution

Download Solution PDF
Daisy wheel printer
  • It is an impact printing technology invented in 1970 by Dr. Andrew Gabor at Diablo Data Systems.
  • It uses interchangeable pre-formed type elements, each with typically 96 glyphs, to generate high-quality output comparable to premium typewriters such as the IBM Selectric, but two to three times faster.

90d21d60a07b13a2dd1f59b3bc52ddf6

The Central Processing Unit (CPU) consists of

  1. ALU and Control unit only
  2. ALU, Control unit and Registers only
  3. ALU, Control unit and System bus only
  4. ALU, Control unit, Registers, and Internal bus

Answer (Detailed Solution Below)

Option 4 : ALU, Control unit, Registers, and Internal bus

Computer Organization and Architecture Question 10 Detailed Solution

Download Solution PDF

The correct answer is ALU, Control unit, Registers, and Internal bus.

Key Points

There are three basic units of a computer system:

  1. Input Unit: Keyboard, Mouse, Scanner, Light pen, Trackball etc.
  2. Central Processing Unit
  3. Output Unit: Monitor and Printer

gate SSC EE 80

Central Processing Unit (CPU): It is the most important unit, where all the processing jobs take place. CPU is the control centre of the computer and hence it is said to be the brain of the computer. CPU has three main components:

  1. Arithmetic Logic Unit (ALU): It performs all the arithmetic operations like addition (+), multiplication (*), subtraction (-), division (/) on the numerical data directed by the control unit. All the logical operations, like less than (<), greater than (>), equal to (=), not equal to (≠) etc. are also carried out by ALU.
  2. Control Unit (CU): It controls and coordinates all the operations taking place in the system. It controls the flow of data and information from one unit to the other.
  3. Registers/Memory Unit (MU): To execute a program, data and instructions need to be stored temporarily. This storage is done in the MU. The data and instructions are retrieved from MU by Control Unit for supplying to ALU as when required by the program.
  4. Internal bus: To transfer the data

The organization and inter connection of the various components of computer system is.

  1. architecture 
  2. network 
  3. graphics
  4. designing 

Answer (Detailed Solution Below)

Option 1 : architecture 

Computer Organization and Architecture Question 11 Detailed Solution

Download Solution PDF

The correct option is (1)

Architecture

Concept:-

The organization and interconnection of the various components of the computer system are Architecture.

Key Points

  • A specification for how a set of software and hardware technology standards combine to build a computer system or platform is known as computer architecture.
  • In a nutshell, computer architecture describes how a computer system is built and which technologies it supports.
  • Computer architecture is a set of rules and procedures used in computer engineering to explain the functioning, organization, and implementation of computer systems.
  • The CPU, memory input/output device, and communication channels that connect them are the primary components in a conventional computer system.

Additional InformationNetworks:- A network is made up of two or more computers that are connected in order to share resources, exchange files, or send and receive electronic messages.

Graphics:- A design or visual picture exhibited on a number of media, such as canvas, paper, walls, signage, or a computer monitor, is referred to as a graphic.

Designing:- Design is an art form, a technique of human expression that imbues objects through a system of highly developed procedures.

A small text file created by a website that is stored in the user’s computer temporarily for that session is called _____.

  1. malware
  2. bug
  3. cookie
  4. cache

Answer (Detailed Solution Below)

Option 3 : cookie

Computer Organization and Architecture Question 12 Detailed Solution

Download Solution PDF

The correct answer is cookie.

Key Points

  • A cookie is a small text file (up to 4 KB) created by a website that is stored in the user's computer temporarily for only that session or permanently in storage.
    • Cookies provide a way for the website to recognize you and track your preferences.
    • Cookies are typically used to "maintain the state" of the browser session. For example, users can place items in a shopping cart, switch to another page or another site, and when they return, the site recognizes them and the current state of the cart.
    • Cookies consist of a series of URLs (addresses) for which they are valid. When the web browser or other HTTP application again sends a request to the webserver containing those URLs, it sends it along with the associated cookies.
    • For example, if your user ID and password are stored in a cookie, this saves you from typing the same information over and over again the next time you access that service.
    • Cookies allow the website to customize the pages and create a custom experience for each individual.

Additional Information

  • Malware
    • Malware is malicious software intended to cause damage to a computer or network.
    • Types of malware include viruses, worms, spyware, and ransomware.
    • Malware can find its way onto computers when a user clicks a link or email attachment that installs malicious software.
  • Bug
    • A bug computer definition is referred to as a failure or a flaw in the software program.
    • A Bug produces an incorrect or undesired result that deviates from the expected result or behaviour.
    • When you add two numbers using this app and if it shows you a wrong total, then we can say this app has a bug.
  • Cache
    • The cache is the temporary memory officially termed "CPU cache memory".
    • "Cache" is also used to refer to any temporary collection of data, either in hardware or software.

_______ is a special type of memory that works like both RAM and ROM.

  1. Register memory
  2. Secondary memory
  3. Flash memory
  4. Cache memory

Answer (Detailed Solution Below)

Option 3 : Flash memory

Computer Organization and Architecture Question 13 Detailed Solution

Download Solution PDF

The correct answer is Flash memory.

Key Points

  • Flash memory is a type of memory that functions similarly to RAM and ROM.
  • You can write data to flash memory just like you can to RAM, however, unlike ROM, the data isn't lost when the power is turned off. Read-only memory is referred to as ROM.
  • Although the CPU can read from ROM, it cannot write to or modify it. ROM is a long-term storage medium.
  • Random-access memory (RAM) refers to memory that the microprocessor can read from and write to. It's done in RAM when you construct something in memory.

Important Points

  • The smallest and fastest memory in a computer is register memory.
  • External memory, often known as secondary memory, refers to the numerous storage media that a computer might use to store data and applications.
  • Cache memory, often known as cache, is a supplementary memory system that saves frequently used instructions and data in order for the central processing unit (CPU) of a computer to perform them more quickly.

The first instructor of bootstrap loader program of an operating system is stored in ____________.

  1. RAM
  2. Hard Disk
  3. BIOS
  4. None

Answer (Detailed Solution Below)

Option 3 : BIOS

Computer Organization and Architecture Question 14 Detailed Solution

Download Solution PDF

The Correct Answer is BIOS.

Key Points

  • The first instructor of the bootstrap loader program of an operating system is stored in BIOS(Basic Input/Output System).
  • The bootstrap loader is a programme that resides on the EPROM, ROM or other non-volatile memory of the machine.
  • It is executed by the processor automatically when the device is turned on. To continue installing the computer's operating system, the bootstrap loader reads the boot sector of the hard drives.
  • The bootstrap loader first conducts the power-on self-test, also referred to as POST, when the machine is switched on or restarted.
  • The bootstrap loader loads the operating system for the machine into memory if the POST is successful and no problems are found.
  • It is then possible for the machine to access, load, and operate the operating system.
  • In computers that have an EFI (Extensible Firmware Interface), the bootstrap loader has been replaced and is now part of the EFI BIOS.

CD-ROM is a ______.

  1. MP3 file
  2. Microprocessor
  3. Magnetic disk
  4. Storage medium

Answer (Detailed Solution Below)

Option 4 : Storage medium

Computer Organization and Architecture Question 15 Detailed Solution

Download Solution PDF

The correct answer is  Storage medium.

Key Points

  • CD-ROM, an abbreviation of compact disc read-only memory, type of computer memory in the form of a compact disc that is read by optical means.
  • A CD-ROM drive uses a low-power laser beam to read digitized (binary) data that has been encoded in the form of tiny pits on an optical disk.
  • The drive then feeds the data to a computer for processing.
  • With a storage capacity of 680 megabytes, the CD-ROM found rapid commercial acceptance as an alternative to so-called floppy disks.
  • Unlike conventional magnetic storage technologies (e.g., tapes, floppy disks, and hard disks), CDs and CD-ROMs are not recordable hence the tag “read-only.”

Additional Information

  • MP3 File:
    • MP3 (MPEG-1 Audio Layer-3) is a standard technology and format for compressing a sound sequence into a very small file while preserving the original level of sound quality when it is played.
    • MP3 provides near CD-quality audio.
    • It is one of the most common music file types.
  • Microprocessor:
    • A microprocessor is an electronic component that is used by a computer to do its work.
    • It is a central processing unit on a single integrated circuit chip containing millions of very small components including transistors, resistors, and diodes that work together.
  • Magnetic Disk:
    •  A magnetic disk is a storage device that uses a magnetization process to write, rewrite, and access data.
    • It is covered with a magnetic coating and stores data in the form of tracks, spots, and sectors.
    • Hard disks, zip disks, and floppy disks are common examples of magnetic disks.
Get Free Access Now
Hot Links: teen patti bindaas teen patti online game teen patti neta