Practise 40 Computer System Architecture questions asked in UGC NET Computer Science from 2020–2025. Questions cover Digital logic, Number representation, Data path and control unit design, Instruction set architecture, Memory hierarchy and I/O organisation. Every question is shown with its options and the correct answer, free to read.
Practise Computer System Architecture as timed sets
Focused 10-question sets with instant scoring, explanations, and weak-area analysis.
Ordered newest exam first. Each question links back to the full paper it came from.
Give the correct order of the instruction cycle:
A. Read the effective address
B. Fetch the instruction
C. Execute the instruction
D. Decode the instruction
Answer: (B) B, D, A, C
Explanation
Which of the following do not represent memory-reference instructions?
Answer: (B) B and D only
Explanation
Match List-I with List-II.
| List-I | List-II |
|---|---|
| A. (11011)₂ B. Complements C. Parity bits D. Variable-length instruction | I. Error-detection code II. CISC III. Negative number IV. (33)₁₆ |
Answer: (B) A-IV, B-III, C-I, D-II
Explanation
A pipeline multiplier uses two carry-save adders (CSAs) and a carry-propagate adder (CPA). Arrange the following stages in the proper order.
A. Two CSAs merge four numbers into two numbers.
B. A CPA adds two numbers.
C. Two levels of four CSAs are used.
D. Eight partial products are generated.
Answer: (B) D, C, A, B
Explanation
Which of the following are not data-manipulation instructions?
A. Call
B. Load
C. And
D. Increment
E. Shift
Answer: (B) A and B only
Explanation
Arrange the following in increasing order of access time.
A. Solid-state drive
B. Optical disks
C. DRAM
D. SRAM
E. Registers
Answer: (D) E, D, C, A, B
Explanation
Which table for a dynamic pipeline becomes more interesting when a nonlinear pattern follows?
Answer: (A) Reservation table
Explanation
Which is often needed to evaluate cache performance?
Answer: (A) Hit ratio
Explanation
Consider the following relations on {1, 2, 3, 4}. Which of the following relations are reflexive?
A. R₁ = {(1,1),(1,2),(2,1),(2,2),(3,4),(4,1),(4,4)}
B. R₂ = {(1,1),(1,2),(2,1)}
C. R₃ = {(1,1),(1,2),(1,4),(2,1),(2,2),(3,3),(4,1),(4,4)}
D. R₄ = {(2,1),(3,1),(3,2),(4,1),(4,2),(4,3)}
E. R₅ = {(1,1),(1,2),(1,3),(1,4),(2,2),(2,3),(2,4),(3,3),(3,4),(4,4)}
Answer: (D) (C) and (E) Only
Explanation
Match List-I with List-II.
| List-I (IP Address) | List-II (Class) |
|---|---|
| (A) 10.20.30.40 | (I) Class E |
| (B) 210.20.30.3 | (II) Class B |
| (C) 180.30.100.10 | (III) Class A |
| (D) 252.5.15.11 | (IV) Class C |
Answer: (D) (A)-(III), (B)-(IV), (C)-(II), (D)-(I)
Explanation
Find the correct sequence of the storage devices
in descending order based on their access time.
A. Registers
B. Magnetic Disk
C. Magnetic Tapes
D. Main memory
E. Optical Disk
Answer: (D) (C), (E), (B), (D), (A)
Explanation
A CPU has a 5-stage pipeline with the following
stages Fetch (F), Decode (D), Execute (E), Memory
(M) and Write-back (W). Each stage takes one
clock cycle to complete. Assume there are no
pipeline stalls and the pipeline is initially empty.
How many clock cycles are required to complete
the execution of 10 instructions?
Answer: (B) 14
Explanation
Consider the following, where p and q are two statements.
A. ¬(p ∧ q) ≡ ¬p ∨ ¬q
B. ¬(p ∨ q) ≡ ¬p ∧ ¬q
C. p ∧ ¬p ≡ T
D. ¬(p ⇒ q) ≡ p ∧ ¬q
E. p ∨ q ≡ ¬p ∨ ¬q
Answer: (A) (A), (B) and (D) only
Explanation
Match List-I with List-II.
| List-I (Counter) | List-II (uses/working) |
|---|---|
| (A) N-bit Ring Counter | (I) Uses universal clock |
| (B) Synchronous Counter | (II) Counts exactly N states |
| (C) Asynchronous Counter | (III) Counts 0 to 9 |
| (D) Decimal Counter | (IV) Main clock is applied to first flip-flop only |
Answer: (C) (A)-(II), (B)-(I), (C)-(IV), (D)-(III)
Explanation
Consider the following statement regarding
special purpose registers.
A. Program Counter (PC) keeps the track of next
instruction executed
B. Instruction register holds the address of first
instruction to be executed
C. Accumulator holds the output of ALU
D. Program Counter ( PC ) keeps the track of
only first instruction of the program
Answer: (A) (A) and (C) Only
Explanation
A multi processor system with 16 processors is
used to execute a parallelizable task. If the serial
portion of the task takes 200 clock cycles and
the parallel portion take 800 clock cycles. When
all 16 processor are used how many total clock
cycles are required to complete the task ?
Answer: (A) 250
Explanation
Arrange the given steps required for a Direct
Memory Access (DMA) transfer in the correct
order.
A. Initiate DMA transfer request
B. Transfer data directly between peripheral and
memory
C. Processor grants DMA control over the
system bus
D. DMA controller completes data transfer and
signals completion
Answer: (B) (A),(C),(B),(D)
Explanation
Match List-I with List-II.
| List-I (Recurrence Relation) | List-II (Complexity) |
|---|---|
| (A) T(n) = 2T(n/2) + n | (I) T(n) = θ(n log n) {exact solution} |
| (B) T(n) = T(n/2) + 1 | (II) O(n²) |
| (C) T(n) = 2T(n/2) + 1 | (III) T(n) = θ(n) {exact solution} |
| (D) T(n) = T(n−1) + n | (IV) O(n) |
Answer: (C) (A)-(I), (B)-(III), (C)-(IV), (D)-(II)
Explanation
A vector processor with 16 lanes can perform an
operation on 1024 elements with each operation
taking 5 clock cycles. How many cycles are
needed to complete the operation?
Answer: (A) 64
Explanation
Which of the following circuit is used to store one bit of data ?
Answer: (C) Flip-Flop
Explanation
Identify the code sequence : 1010 1011 1001 1000
Answer: (C) Gray
Explanation
The microoperation which divides a signed binary number by 2 is :
Answer: (B) Logical shift
Explanation
"CREATE TABLE T" in SQL is an example of : (14) Normalization
Answer: (C) DDL
Explanation
An Address in main memory is called :
Answer: (D) Physical address
Explanation
The average time required to search a storage location in memory and obtain its contents is called :
Answer: (A) Access time
Explanation
If N2=NXN, Nis set of natural numbers and R is relation on N2, s.t. RC N2xN2i.e. <x,y> R<u,v> xv =yu, then which of the followings are TRUE ?
A. Reflexive
B. Symmetric
C. Transitive
D. Assymmetric Choose the correct answer from the options given below :
Answer: (D) A, B and C only
Explanation
The interface(s) that provide(s) I/O transfer of data directly to and from the memory unit peripheral is/are termed as :
A. DMA (Direct Memory Access)
B. IOP (Input-Output Processor)
C. Serial Interface
D. Parallel Interface Choose the correct answer from the options given below :
Answer: (C) A and B only
Explanation
Which of the following statements is/are NOT CORRECT about NUMA ?
A. LOAD and STORE instructions are used to access remote memory.
B. There is a single address space visible to all CPU.
C. Access to local memory is slower than access to remote memory.
D. When the access time to remote memory is hidden, the system is called NC - NUM
A.
E. In CC- NUMA, Coherent caches are present. Choose the correct answer from the options given below :
Answer: (D) (© and (D) Only
Explanation
Consider the following code segment : int arr [] = {0, 1, 2, 3, 4}; int i=1, *ptr; ptr=arr+2; arrange the following printf statements in the increasing order of their output.
A. printf ("%d", pti);
B. printf ("%d", ptr[i+1]);
C. _ printf ("%d", ptr[—i));
D. printf ("%d", ptr[—i+1]); Choose the correct answer from the options given below :
Answer: (B) (©, (), (A), 8)
Explanation
Match List-I with List-II.
| Source matching prompt | Source values |
|---|---|
| See question stem | See answer choices |
Answer: (B) (A)-(), ()-@), (-CV), (D)-(N)
Explanation
Match List-I with List-II.
| Source matching prompt | Source values |
|---|---|
| See question stem | See answer choices |
Answer: (B) (AC, B)-(), (CAV), (P)-(II)
Explanation
Consider a machine with byte-addressable main memory of 2¹⁶ bytes and block size 8 bytes. A direct-mapped cache has 32 lines. How many bits are in the tag, line, and word fields of a main-memory address?
Answer: (A) 8, 5, 3
Explanation
The following basic-computer program is stored in memory. What is the accumulator content after execution?
210 CLA
211 ADD 217
212 INC
213 STA 217
214 LDA 218
215 CMA
216 AND 217
217 1234H
218 9CE2H
Answer: (D) 0215H
Explanation
A non-pipeline system takes 50 ns per task. The same task uses a six-segment pipeline with a 10 ns clock. Determine the approximate speedup for 500 tasks.
Answer: (B) 4.95
Explanation
For a k-segment pipeline, which statements are true?
A. The theoretical maximum speed-up is k.
B. A finite k-segment pipeline cannot attain that maximum exactly.
C. All pipeline segments always take the same computation time.
Answer: (A) (A) and (B) only
Explanation
Which statements about a multiprocessor system are true?
A. It is controlled by one operating system.
B. It consists of multiple computers connected by communication lines.
C. It is classified as an MIMD system.
Answer: (C) (A) and (C) only
Explanation
Which cloud concept is related to pooling and sharing resources?
A. Virtual memory
B. Service
C. Virtualization
Answer: (A) (C) only
Explanation
Match List I with List II
List I
A. Handshaking
B. Programmed I/O
C. Interrupt-initiated I/O
D. WO processor
List IL
V/O interface informs the CPU that
device is ready for transfer
requires two control signals working in
opposite directions
has local memory & control large set of
I/O devices.
require CPU to check the I/O flag &
perform transfer
| List I | List II |
|---|---|
| Items are listed in the question stem. | Match each item to its stated description or complexity. |
Answer: (C) A-II, B-IV, C-I, D-II
Explanation
Arrange the following types of machine in descending order of complexity.
A. SISD
B. MIMD
C. SIMD
Answer: (C) B,C,A 4 CAB
Explanation
Given below are two statements:
Statement I: Hardwired control unit can be optimized to produce fast mode of operation.
Statement II: Indirect addressing mode needs two memory reference to fetch the operand.
In the light of the above statements, choose the correct answer from the options given below
(i) Both Statement I and Statement II are true
Answer: (A) OCR review required
Explanation
40 Computer System Architecture questions appear in the UGC NET Computer Science papers held between 2020–2025, and all of them are on this page with their answer key.
Yes. Every question, its options, and the correct answer are free to read with no account. Signing in additionally unlocks the detailed explanation under each question.
Computer System Architecture appears in every recent UGC NET Computer Science paper, across all 4 sittings covered here. Its share of the paper makes it worth revising thoroughly rather than sampling.
Attempt the Computer System Architecture topic-wise sets, which put the same questions into a timed interface with instant scoring and weak-area analysis afterwards.
Ready for a full paper?
Attempt Paper 1 + Paper 2 (Computer Science) together in a single timed session.