Computer Sciences > GATE 2026 SET-1 > Addressing Modes
Match each addressing mode in List I with a data element or an element of a data structure (in a high-level language) in List II:

List-I (Addressing Mode)List-II (Description)
P. Immediate1. Element of an array
Q. Indirect2. Pointer
R. Base with index3. Element of a record
S. Base with offset4. Constant
A
P-3, Q-1, R-3, S-1
B
P-4, Q-2, R-1, S-3
C
P-1, Q-2, R-4, S-3
D
P-2, Q-1, R-3, S-4

Correct : b

Analysing each addressing mode:
P. Immediate → 4. Constant
In immediate addressing, the operand is directly embedded in the instruction itself. This is used to represent a constant value. Example: MOV R1, #5 (5 is a constant).
Q. Indirect → 2. Pointer
In indirect addressing, the address field contains a pointer — the address of a memory location that holds the actual address of the operand. This is exactly how pointers work.
R. Base with index → 1. Element of an array
Base register holds the starting address of an array and the index register holds the offset for each element. This is the classic way to access array elements. Example: Base + Index = address of arr[i].
S. Base with offset → 3. Element of a record
Base register holds the starting address of a record (struct) and a fixed offset is used to access a specific field within it. This is how struct members are accessed in memory.
The correct match is P-4, Q-2, R-1, S-3 (Option B)

Similar Questions

For computers based on three-address instruction formats, each address field can be used to specify which of the following: S1: A memory operand S2: A process...
#78 MCQ
Consider a system with byte-addressable memory, 32 bit logical addresses, 4 kilobyte page size and page table entries of 4 bytes each. The size of the page tabl...
#536 Fill in the Blanks
A palindrome is a word that reads the same forwards and backwards. In a game of words, a player has the following two plates painted with letters. From...
#1 MCQ

Related Topics

GATE 2026 Computer Science CSE Set 1 Question 11 Addressing Modes Immediate Addressing Indirect Addressing Base with Index Base with Offset Computer Organization Computer Architecture Instruction Set Architecture ISA Match the Following MCQ 1 Mark

Unique Visitor Count

Total Unique Visitors

Loading......