1
GATE CSE 2026 Set 1
MCQ (Single Correct Answer)
+1
-0

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 List-II
P. Immediate 1. Element of an array
Q. Indirect 2. Pointer
R. Base with index 3. Element of a record
S. Base with offset/displacement 4. Constant
A

$\mathrm{P}-4, \mathrm{Q}-3, \mathrm{R}-1, \mathrm{~S}-2$

B

$P-4, Q-2, R-1, S-3$

C

$P-1, Q-4, R-3, S-2$

D

$\mathrm{P}-2, \mathrm{Q}-3, \mathrm{R}-1, \mathrm{~S}-4$

2
GATE CSE 2026 Set 1
MCQ (Single Correct Answer)
+1
-0

Consider a processor P whose instruction set architecture is the load-store architecture. The instruction format is such that the first operand of any instruction is the destination operand.

Which one of the following sequences of instructions corresponds to the high-level language statement $Z=X+Y$ ?

Note: $X, Y$, and $Z$ are memory operands. $R 0, R 1$, and $R 2$ are registers.

A

ADD Z, X, Y

B

ADD RO, X, Y STORE Z, R0

C

LOAD RO, X

ADD Z, RO, Y

D

LOAD RO, X

LOAD R1, Y

ADD R2, R0, R1

STORE Z, R2

3
GATE CSE 2026 Set 1
MCQ (Single Correct Answer)
+1
-0

Which one of the following dependencies among the register operands of different instructions can cause a data hazard in a pipelined processor?

A

Read-after-read

B

Read-after-write

C

Write-after-read

D

Write-after-write

4
GATE CSE 2026 Set 1
MCQ (Single Correct Answer)
+2
-0

Consider the real valued variables $X, Y$ and $Z$ represented using the IEEE 754 singleprecision floating-point format. The binary representations of $X$ and $Y$ in hexadecimal notation are as follows:

$$ X: 35 C 00000 \quad Y: 34 A 00000 $$

Let $Z=X+Y$.

Which one of the following is the binary representation of $Z$, in hexadecimal notation?

A

35 C 80000

B

35 CC 0000

C

$35 E 80000$

D

$35 E C 0000$