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

Last updated on Jun 10, 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:

Daisy wheel printer is what type a printer?

  1. Non impact
  2. Impact
  3. Laser
  4. Line printer
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : Impact

Computer Organization and Architecture Question 1 Detailed Solution

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.

Computer Organization and Architecture Question 2:

A computer with a 32-bit wide data bus uses 4K X 8 static RAM memory chips. What is the smallest memory that this computer can have?

  1. 32 kb
  2. 16 kb
  3. 8 kb
  4. 24 kb
  5. None of the above

Answer (Detailed Solution Below)

Option 2 : 16 kb

Computer Organization and Architecture Question 2 Detailed Solution

The correct answer is option 2.

Concept:

Random Access Memory:

Random Access Memory of the CPU is used to store data, programmes, and programme results. It is a read-write memory that holds information up until the machine is operational. Data is wiped the moment the computer is turned off.

Explanation:

The given data,

The computer data bus wide= 32-bit

The static RAM memory chip = 4K X 8 

Given that each chip has 8 bits of data input/output and that there is a 32-bit data bus, We need at least 4 chips (8 x 4)= 32 bits.

Since with 4 chips,

The smallest memory is= 4 * ( 4 KB * 8 ) / 8

=  214 

=16 KB

Hence the correct answer is 16 kb.

Computer Organization and Architecture Question 3:

Which of the following modes is the most relevant addressing mode to write position independent code?

  1. Direct mode
  2. Indirect mode
  3. Relative mode
  4. Indexed mode 
  5. None of the above

Answer (Detailed Solution Below)

Option 3 : Relative mode

Computer Organization and Architecture Question 3 Detailed Solution

  1. Direct Addressing mode: In this mode, the address field present in the instruction contains the effective address of the operand. Hence, intermediate memory access is not needed.
  2. Indirect Addressing Mode: In this mode, the instruction contains the address of the location itself where target address is stored.
  3. Relative Addressing Mode: In this mode, the effective address is represented by the sum of CPU register content and address part of instruction word. Now, this effective address becomes the address of the next instruction.
  4. Indexed Addressing Mode: In this mode, the effective address is obtained by sum of content of index register and instruction address.
    • In relative mode, we need the offset to reach any branch instruction.
    • In any other mode, we need to fix the position of segments of code, no matter if it is relocatable so that our displacement stays correct.
    • In relative mode, the systems update all the things related to current relocation and hence, even though the branch is relocated many times, the offset updates without us doing it manually.

Computer Organization and Architecture Question 4:

When a peripheral device needs immediate attention from the operating system, it generates a(n):

  1. Page File
  2. Stack
  3. Interrupt
  4. Spool
  5. None of the above

Answer (Detailed Solution Below)

Option 3 : Interrupt

Computer Organization and Architecture Question 4 Detailed Solution

The correct answer is Interrupt

Explanation:

  • The interrupt is a signal emitted by hardware or software when a process or an event needs immediate attention.
  • It alerts the processor to a high-priority process requiring interruption of the current working process.

Additional Information Spool

  • "Spool" is technically an acronym for simultaneous peripheral operations online. 
  • Spooling is a process in which data is temporarily held to be used and executed by a device, program or the system.
  • Data is sent to and stored in memory or other volatile storage until the program or computer requests it for execution.

Page File:

  • A pagefile is a reserved portion of a hard disk and is used as an extension of random access memory (RAM) for data in RAM that is not been used recently.

Stack:

  • A stack is a linear data structure.
  • The elements in a stack are added and removed only from one end, which is called the TOP.
  • Hence, a stack is called a LIFO (Last-In-First-Out) data structure, as the element that was inserted last is the first one to be taken out.
  • The push operation is used to insert an element into the stack.
  • The pop operation is used to delete the topmost element from a stack.

Computer Organization and Architecture Question 5:

Which of the following are typical characteristics of a RISC machine?

  1. Instruction taking multiple cycles
  2. Highly pipelined
  3. Multiple register sets
  4. Both (2) and (3)
  5. None of the above

Answer (Detailed Solution Below)

Option 4 : Both (2) and (3)

Computer Organization and Architecture Question 5 Detailed Solution

The correct answer is Both (2) and (3).

Key Points

  • Highly pipelined: One of the key characteristics of RISC (Reduced Instruction Set Computer) architecture is the ability to support pipelining. Pipelining allows multiple instruction phases to be processed simultaneously, which increases instruction throughput and overall performance.
  • Multiple register sets: RISC architectures often feature a large number of registers or multiple register sets. This is because RISC designs aim to minimize memory access by maximizing the use of registers for operations.

Additional Information

  • Instruction taking multiple cycles: This is more characteristic of CISC (Complex Instruction Set Computer) architectures. RISC architectures are designed to execute instructions in a single cycle.

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.

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 10 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.

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 11 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

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 (), 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 12 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.

_______ 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.

Hot Links: teen patti 100 bonus teen patti star teen patti gold real cash online teen patti real money