GATE CSE 2026 Set 1

GATE 2026 Previous Year

3 hDuration
100Total Marks
65Questions
12Sections
Log in to start โ†’

Instructions

General instructions for this test:

  • Duration: 3 h. The timer starts as soon as you begin and cannot be paused.
  • Total questions: 65 across 12 section(s); maximum marks: 100.
  • You are allowed 1 attempt(s) at this test.
  • Use the question palette on the right to navigate. Answered questions are highlighted in green; questions marked for review are highlighted in yellow.
  • Each question's marking scheme (correct / wrong) is shown on the question card. Unanswered questions receive zero marks.
  • Switching tabs, exiting full-screen, or attempting to copy text is monitored. Repeated tab-switching may auto-submit the test.
  • Your answers autosave as you navigate. Click Submit Test when you are done. The test will be auto-submitted when the timer expires.

No exam-specific instructions were provided for this paper.

Paper Structure

Compiler Design

Compiler Design

Q1. mcq multi +2 / 0
$$ \text { Consider the following two syntax-directed definitions SDD1 and SDD2 for type declarations. } $$ SDD1 Grammar(G1) $$ \text { Semantic Rules } $$ $$ \mathrm{D} \rightarrow \mathrm{TV} $$ $$ \begin{aligned} & \text { D.type = T.type } \\ & \text { V.type = T.type } \end{aligned} $$ $$ \mathrm{T} \rightarrow \mathrm{int} $$ $$ \text { T.type = int } $$ $$ \mathrm{T} \rightarrow \text { float } $$ $$ \text { T.type = float } $$ $$ \mathrm{V} \rightarrow \mathrm{~V}_1 \mathrm{id} $$ $$ \begin{aligned} & V_1 \cdot \text { type }=\text { V.type } \\ & \text { put(id.entry, V.type) } \end{aligned} $$ $$ \mathrm{V} \rightarrow \mathrm{id} $$ $$ \text { put(id.entry, V.type) } $$ SDD2 Grammar(G2) $$ \text { Semantic Rules } $$ $$ \mathrm{D} \rightarrow D_1 \mathrm{id} $$ $$ \begin{aligned} & \text { D.type }=D_1 \cdot \text { type } \\ & \text { put(id.entry, } D_1 \cdot \text { type) } \end{aligned} $$ $$ \mathrm{D} \rightarrow \mathrm{~T} \text { id } $$ $$ \begin{aligned} & \text { D.type = T.type } \\ & \text { put(id.entry, T.type) } \end{aligned} $$ $$ \mathrm{T} \rightarrow \text { int } $$ $$ \text { T.type = int } $$ $$ \mathrm{T} \rightarrow \text { float } $$ $$ \text { T.type = float } $$ $D$ is the start symbol, and int, float and id are the three terminals. The non-terminal $V_1$ is the same as $V$ and the non-terminal $D_1$ is the same as $D$. Here, the subscript is used to differentiate the grammar symbols on the two sides of a production. The function put updates the symbol table with the type information for an identifier. Let $P$ and $Q$ be the languages specified by grammars G1 and G2, respectively. Which of the following statements is/are true?
Q2. mcq single +2 / 0
$$ \text { Consider the control flow graph shown in the figure. } $$ Which one of the following options correctly lists the set of redundant expressions (common sub-expressions) in the basic blocks B4 and B5? Note: All the variables are integers.
Q3. mcq single +1 / 0
Consider the following C statements: char str1 = "Hello; / Statement S1 */ char str2 = "Hello;"; / Statement S2 */ int str3 = "Hello"; / Statement S3 */ Which of the following options is/are correct?
Q4. mcq single +1 / 0
Which of the following statements is/are true?
Data Structures

Data Structures

Q1. mcq single +2 / 0
Consider the following code snippet in C language that computes the number of nodes in a non-empty singly linked list pointed to by the pointer variable head. struct node{ int elt; struct node *next; }; int getListSize (struct node *head) { if( E1 ) return 1; return E2; } Which one of the following options gives the correct replacements for the expressions E 1 and E 2 ?
Q2. numerical +2 / 0
The following sequence corresponds to the preorder traversal of a binary search tree: $$ 50,25,13,40,30,47,75,60,70,80,77 $$ The position of the element 60 in the postorder traversal of $T$ is $\_\_\_\_$ . (answer in integer) Note: The position begins with 1.
Q3. numerical +1 / 0
The height of a binary tree is the number of edges in the longest path from the root to a leaf in the tree. The maximum possible height of a full binary tree with 23 nodes is $\_\_\_\_$ . (answer in integer)
Q4. mcq multi +1 / 0
Let $n$ be an odd number greater than 100 . Consider a binary minheap with $n$ elements stored in an array $P$ whose index starts from 1. Which of the following indices of $P$ do/does NOT correspond to any leaf node of the minheap?
Q5. mcq single +2 / 0
Let $P$ be the set of all integers from 1 to 15 . Consider any order of insertion of the elements of $P$ into a binary search tree that creates a complete binary tree. Which one of the following elements can NEVER be the third element that is inserted?
Q6. mcq single +1 / 0
Consider a hash table $P[0,1, \ldots, 10]$ that is initially empty. The hash table is maintained using open addressing with linear probing. The hash function used is $h(x)=(x+7) \bmod 11$. Consider the following sequence of insertions performed on $P$ : $$ 1,13,22,15,11,24 $$ Which of the following positions in the hash table is/are empty after these insertions are performed?
Q7. mcq multi +2 / 0
Consider the following pseudocode for depth-first search (DFS) algorithm which takes a directed graph $G(V, E)$ as input, where $d[v]$ and $f[v]$ are the discovery time and finishing time, respectively, of the vertex $v \in V$. **DFS(G):**** unmark all v โˆˆ V t โ† 0 for each v โˆˆ V if v is unmarked t โ† Explore(G, v, t) end if end for Explore(G, v, t):** mark v t โ† t + 1 d[v] โ† t for each (v, w) โˆˆ E if w is unmarked t โ† Explore(G, w, t) end if end for t โ† t + 1 f[v] โ† t return t Suppose that the input directed graph $G(V, E)$ is a directed acyclic graph (DAG). For an edge $(u, v) \in E$, which of the following options will NEVER be correct?
Q8. mcq multi +2 / 0
An undirected, unweighted, simple graph $G(V, E)$ is said to be 2 -colorable if there exists a function $c: V \rightarrow\{0,1\}$ such that for every $(u, v) \in E, c(u) \neq c(v)$. Which of the following statements about 2-colorable graphs is/are true?
Database Management System

Database Management System

Q1. mcq multi +1 / 0
Let $P, Q, R$ and $S$ be the attributes of a relation in a relational schema. Let $X \rightarrow Y$ indicate functional dependency in the context of a relational database, where $X, Y \subseteq\{P, Q, R, S\}$ Which of the following options is/are always true?
Q2. mcq multi +1 / 0
In the context of relational database normalization, which of the following statements is/ are true?
Q3. numerical +2 / 0
Consider a relational database schema with a relation $R(A, B, C, D)$. If $\{A, B\}$ and $\{A, C\}$ are the only two candidate keys of the relation $R$, then the number of superkeys of relation $R$ is $\_\_\_\_$ . (answer in integer)
Q4. mcq single +2 / 0
Consider a relational database schema with two relations $R(P, Q)$ and $S(X, Y)$. Let $E=\{\langle u\rangle \mid \exists v \exists w\langle u, v\rangle \in R \wedge\langle v, w\rangle \in S\}$ be a tuple relational calculus expression. Which one of the following relational algebraic expressions is equivalent to $E$ ?
Algorithms

Algorithms

Q1. mcq multi +2 / 0
Let $G(V, E)$ be a simple, undirected, edge-weighted graph with unique edge weights. Which of the following statements about the minimum spanning trees (MST) of $G$ is/are true?
Q2. mcq single +2 / 0
Let $G(V, E)$ be an undirected, edge-weighted graph with integer weights. The weight of a path is the sum of the weights of the edges in that path. The length of a path is the number of edges in that path. Let $s \in V$ be a vertex in $G$. For every $u \in V$ and for every $k \geq 0$, let $d_k(u)$ denote the weight of a shortest path (in terms of weight) from $s$ to $u$ of length at most $k$. If there is no path from $s$ to $u$ of length at most $k$, then $d_k(u)=\infty$. Consider the statements: S1: For every $k \geq 0$ and $u \in V, d_{k+1}(u) \leq d_k(u)$. S2: For every $(u, v) \in E$, if $(u, v)$ is part of a shortest path (in terms of weight) from $s$ to $v$, then for every $k \geq 0, d_k(u) \leq d_k(v)$. Which one of the following options is correct?
Q3. mcq single +1 / 0
Consider the following recurrence relations: For all $n>1$, $$ \begin{aligned} & T_1(n)=4 T_1\left(\frac{n}{2}\right)+T_2(n) \\ & T_2(n)=5 T_2\left(\frac{n}{4}\right)+\theta\left(\log _2 n\right) \end{aligned} $$ Assume that for all $n \leq 1, T_1(n)=1$ and $T_2(n)=1$. Which one of the following options is correct?
Programming Languages

Programming Languages

Q1. numerical +1 / 0
Consider the following program in C: #include <stdio.h> void func(int i, int j) { if(i < j) { int i = 0; while (i < 10) { j += 2; i++; } } printf("%d", i); } int main() { int i = 9, j = 10; func(i, j); return 0; } The output of the program is $\_\_\_\_$ . (answer in integer) Note: Assume that the program compiles and runs successfully.
Q2. numerical +2 / 0
Consider the recursive functions represented by the following code segment: int bar(int n){ if (n == 1) return 0; else return 1 + bar(n/2); } int foo(int n){ if (n == 1) return 1; else return 1 + foo(bar(n)); } The smallest positive integer n for which foo(n) returns 5 is $\_\_\_\_$ . (answer in integer) Note: Ignore syntax errors (if any) in the function.
Digital Logic

Digital Logic

Q1. mcq single +2 / 0
Consider a 2-bit saturating up/down counter that performs the saturating up count when the input $P$ is 0 , and the saturating down count when $P$ is 1 . The Next State table of the counter is as shown. The counter is built as a synchronous sequential circuit using $D$ flip-flops. Inpur Current state Next state $$ P $$ $$ Q_1 $$ $$ Q_0 $$ $$ Q_1^{+} $$ $$ Q_0^{+} $$ $$ \begin{aligned} & 0 \\ & 0 \\ & 0 \\ & 0 \\ & 1 \\ & 1 \\ & 1 \\ & 1 \end{aligned} $$ $$ \begin{aligned} & 0 \\ & 0 \\ & 1 \\ & 1 \\ & 0 \\ & 0 \\ & 1 \\ & 1 \end{aligned} $$ $$ \begin{aligned} & 0 \\ & 1 \\ & 0 \\ & 1 \\ & 0 \\ & 1 \\ & 0 \\ & 1 \end{aligned} $$ $$ \begin{aligned} & 0 \\ & 1 \\ & 1 \\ & 1 \\ & 0 \\ & 0 \\ & 0 \\ & 1 \end{aligned} $$ $$ \begin{aligned} & 1 \\ & 0 \\ & 1 \\ & 1 \\ & 0 \\ & 0 \\ & 1 \\ & 0 \end{aligned} $$ Which one of the following options corresponds to the expressions for the inputs of the $D$ flip-flops, $D_1$ and $D_0$ ?
Q2. mcq multi +1 / 0
Consider the following Boolean expression of a function $F$ : $$ F(P, Q)=(\bar{P}+Q) \oplus(\bar{P} Q) $$ Which of the following expressions is/are equivalent to $F$ ?
Q3. mcq multi +1 / 0
Consider the 8-bit signed integers $X, Y$ and $Z$ represented using the sign-magnitude form. The binary representations of $X$ and $Y$ are as follows: $$ X: 10110100 \quad Y: 01001100 $$ Which of the following operations to compute $Z$ result(s) in an arithmetic overflow?
Q4. mcq multi +2 / 0
Consider a Boolean function $F$ with the following minterm expression: $$ F(P, Q, R, S)=\Sigma m(1,2,3,4,5,7,10,12,13,14) $$ Which of the following options is/are the minimal sum-of-products expression(s) of $F$ ?
General Aptitude

General Aptitude

Q1. mcq single +2 / 0
Combinatorics deals with problems involving counting. For example, "How many distinct arrangements of N distinct objects in M spaces on a circle are possible?" is a typical problem in combinatorics. This kind of counting is sometimes used in the modeling of several physical phenomena. Often, in such models, the different combinatorial possibilities are assigned probability values. Assigning probabilities enables the computation of the average values of physical quantities. Consider the following statements: P : Combinatorics is always invoked in the modeling of physical phenomena. Q : Modeling some physical phenomena involves assigning probabilities to combinatorial possibilities in order to compute average values of physical quantities. Based on the passage above, what can be inferred about statements $P$ and $Q$ ?
Q2. mcq single +1 / 0
The antonym of the word protagonist is $\_\_\_\_$ .
Q3. mcq single +1 / 0
Consider a knock-out women's badminton singles tournament where there are no ties. The loser in each game is eliminated from the tournament. Every player plays until she is defeated or remains the last undefeated player. The last undefeated player is declared the winner of the tournament. If there are 64 players in the beginning of the tournament, how many games should be played in total to declare the winner of the tournament?
Q4. mcq single +2 / 0
For positive real numbers $S$ and $K$, the function $H_K(S)$ is defined as: $H_K(S)=\max (S-K, 0)$. The max function is defined as: $$ \max (a, b)= \begin{cases}a, & \text { when } a>b \\ b, & \text { when } a \leq b\end{cases} $$ The graph below shows the plot of a function $N(S)$ versus $S$. $N(S)$ can be expressed as $\_\_\_\_$ .
Q5. mcq single +1 / 0
A student needs to enroll for a minimum of 60 credits. A student cannot enroll for more than 70 credits. The credits are divided amongst project and three distinct sets of courses namely, core courses, specialization courses, and elective courses. It is compulsory for a student to enroll for exactly 15 credits of core courses and exactly 20 credits of project. In addition, a student has to enroll for a minimum of 10 credits of specialization courses. The maximum credits of elective courses that a student can enroll for is $\_\_\_\_$
Q6. mcq single +2 / 0
An unbiased six-faced dice whose faces are marked with numbers $1,2,3,4,5$, and 6 is rolled twice in succession and the number on the top face is recorded each time. The probability that the number appearing in the second roll is an integer multiple of the number appearing in the first roll is $\_\_\_\_$
Q7. mcq single +1 / 0
The figure shows two 4-tile patterns. Either one or both of the patterns can be used any number of times and in any orientation to construct a new pattern. Which one of the options below cannot be constructed by using only these two 4-tile patterns assuming there are no overlaps among them?
Q8. mcq single +1 / 0
'When the teacher is in the room, all students stand silently.' If the above statement is true, which one of the following statements is not necessarily true?
Q9. mcq single +2 / 0
In the 2020 summer Olympics' Javelin throw finals, Neeraj Chopra exhibited a spectacular performance to win the gold medal. The silver medal was won by Jakub Vadlejch and the bronze medal was won by Vitezlav Vesely. There were six rounds of throws with each athlete having one throw per round. The best of all the throws of each athlete is considered for the medal. Following were the observations about the throws: (i) The first and second rounds were dominated by Neeraj Chopra with a gold medal performance in his second throw, while the other two athletes did not have any medal winning throws in these rounds. (ii) The throws in the last round by both Jakub Vadlejch and Vitezlav Vesely were fouls and were not considered for scoring. (iii) After four rounds, Vitezlav Vesely was in the second position and could not improve upon his best throw in the succeeding rounds. (iv) In the fourth round, the throw by Jakub Vadlejch was the best in that round. In which round did Vitezlav Vesely have his best throw?
Q10. mcq single +2 / 0
In Panel I of the figure below, the front view and top view of a structure are shown. Which one of the 3D structures shown in Panel II possesses the views shown in Panel I?
Theory Of Computation

Theory Of Computation

Q1. mcq multi +2 / 0
Consider the following context-free grammar $G$ : $$ \begin{aligned} & S \rightarrow a b a A B A b b a \\ & A \rightarrow a a B B A b \mid b B a b a a \\ & B \rightarrow a B b \mid a b \end{aligned} $$ In the above grammar, $S$ is the start symbol, $a$ and $b$ are terminal symbols, and $A$ and $B$ are non-terminal symbols. Let $L(G)$ be the language generated by the grammar $G$. For a string $s \in L(G)$, let $n_1(s)$ be the number of a's in $s$ and $n_2(s)$ be the number of b's in $s$. Which of the following statements is/are true?
Q2. mcq multi +1 / 0
Consider the following grammar where $S$ is the start symbol, and $a$ and $b$ are terminal symbols. $$ S \rightarrow a S b S|b S| \in $$ Which of the following statements is/are true?
Q3. mcq single +2 / 0
Let $L_1$ and $L_2$ be two languages over a finite alphabet, such that $L_1 \cap L_2$ and $L_2$ are regular languages. Which of the following statements is/are always true?
Q4. mcq multi +1 / 0
Let $M$ be a non-deterministic finite automaton (NFA) with 6 states over a finite alphabet. Which of the following options CANNOT be the number of states in the minimal deterministic finite automaton (DFA) that is equivalent to $M$ ?
Computer Networks

Computer Networks

Q1. mcq multi +1 / 0
Which of the following statements is/are true with respect to the interaction of a web browser with a web server using HTTP 1.1?
Q2. mcq single +1 / 0
With respect to a TCP connection between a client and a server, which one of the following statements is true?
Q3. mcq single +2 / 0
A TCP sender successfully establishes a connection with a TCP receiver and starts the transmission of segments. The TCP congestion control mechanism's slow-start threshold is set to 10000 segments. Assume that the round-trip time is fixed at 1 millisecond. Assume that the sender always has data to send, the segments are numbered from 1, and no segment is lost. Let $t$ denote the time (in milliseconds) at which the transmission of segment number 2000 starts. Which one of the following options is correct?
Q4. mcq single +2 / 0
Consider the implementation of sliding window protocol over a lossless link, with a window size of $W$ frames, where each frame is of size 1000 bits (including header). The bandwidth of the link is $100 \mathrm{kbps}\left(1 \mathrm{k}=10^3\right)$ and the one-way propagation delay is 100 milliseconds. Assume that processing times at the sender and receiver are zero and the transmission time of acknowledgements is also zero. Which one of the following options gives the minimum size of $W$ (in number of frames) required to achieve $100 \%$ link utilization?
Q5. mcq multi +2 / 0
An ISP having an address block 202.16.0.0/15 assigns a block of 6000 IP addresses to a client, using the classless internet domain routing (CIDR) super-netting approach. Which of the following address blocks can be assigned by the ISP?
Discrete Mathematics

Discrete Mathematics

Q1. numerical +2 / 0
Let $X$ be a random variable which takes values in the set $\{1,2,3,4,5,6,7,8\}$. Further, $\operatorname{Pr}(X=1)=\operatorname{Pr}(X=2)=\operatorname{Pr}(X=5)=\operatorname{Pr}(X=7)=\frac{1}{6}$ and $\operatorname{Pr}(X=3)=\operatorname{Pr}(X=4) =\operatorname{Pr}(X=6)=\operatorname{Pr}(X=8)=\frac{1}{12}$. The expected value of $X$, denoted by $E[X]$, is equal to $\_\_\_\_$ . (rounded off to two decimal places)
Q2. mcq single +1 / 0
An urn contains one red ball and one blue ball. At each step, a ball is picked uniformly at random from the urn, and this ball together with another ball of the same color is put back in the urn. The probability that there are equal number of red and blue balls after two steps is
Q3. mcq single +1 / 0
Consider $4 \times 4$ matrices with their elements from $\{0,1\}$. The number of such matrices with even number of 1 s in every row and every column is
Q4. mcq single +1 / 0
For $n>1$, the maximum multiplicity of any eigenvalue of an $n \times n$ matrix with elements from $\mathbb{R}$ is
Q5. mcq multi +1 / 0
Let $n>1$. Consider an $n \times n$ matrix $M$ with its elements from $\mathbb{R}$. Let the vector ( 0,1 , $0,0, \ldots, 0) \in \mathbb{R}^n$ be in the null space of $M$. Which of the following options is/are always correct?
Q6. mcq single +2 / 0
Let $G(V, E)$ be a simple, undirected graph. A vertex cover of $G$ is a subset $V^{\prime} \subseteq V$ such that for every $(u, v) \in E, u \in V^{\prime \prime}$ or $v \in V^{\prime}$. Let the size of the smallest vertex cover in $G$ be $k$. Let $S$ be any vertex cover of size $k$. For a vertex $v \in V$, which of the following constraints will always ensure that $v \in S$ ?
Q7. numerical +2 / 0
Let $G$ be an undirected graph, which is a path on 8 vertices. The number of matchings in $G$ is $\_\_\_\_$ (answer in integer)
Q8. mcq multi +2 / 0
Let $f: \mathbb{R} \rightarrow \mathbb{R}$ be defined as follows: $$ f(x)=\left(\frac{|x|}{2}-x\right)\left(x-\frac{|x|}{2}\right) $$ Which of the following statements is/are true?
Q9. numerical +1 / 0
Consider the function $f: \mathbb{R} \rightarrow \mathbb{R}$ defined as follows: $$ f(x)=\left\{\begin{array}{cc} c_1 e^x-c_2 \log _e\left(\frac{1}{x}\right), & \text { if } x>0 \\ 3, & \text { otherwise } \end{array}\right. $$ where $c_1, c_2 \in \mathbb{R}$. If $f$ is continuous at $x=0$, then $c_1+c_2=$ $\_\_\_\_$ . (answer in integer)
Operating Systems

Operating Systems

Q1. numerical +1 / 0
Consider a system consisting of $k$ instances of a resource $R$, being shared by 5 processes. Assume that each process requires a maximum of two instances of resource $R$ and a process can request or release only one instance at a time. Further, a process can request the second instance of the resource only after acquiring the first instance. The minimum value of K for the system to be deadlock-free is $\_\_\_\_$ . (answer in integer)
Q2. mcq multi +1 / 0
With respect to deadlocks in an operating system, which of the following statements is/are FALSE?
Q3. numerical +2 / 0
Consider a CPU that has to execute two types of processes. The first type, Actuators (A), requires a CPU burst of 6 seconds. The second type, Controllers (C), requires a CPU burst of 8 seconds. A new process of type A arrives at time $t=10,20,30,40$, and 50 (in seconds). Similarly, a new process of type C arrives at time $t=11,22,33$, 44, and 55 (in seconds). The CPU scheduling policy is First Come First Serve (FCFS). The first process of type A starts running at $t=10$ seconds. The average waiting time (in seconds) for the 10 processes is $\_\_\_\_$ . (rounded off to one decimal place)
Q4. numerical +2 / 0
Consider the following program snippet. Assume that the program compiles and runs successfully. Further, assume that the fork( ) system call is always successful in creating a process. int main( ) { int i; for (i = 0; i < 3; i++){ if (fork() == 0){ continue; } break; } printf("Hello!"); return 0; } ``` The total number of times that the printf statement gets executed is $\_\_\_\_$ . (answer in integer)
Q5. mcq multi +2 / 0
Consider a system that has a cache memory unit and a memory management unit (MMU). The address input to the cache memory is a physical address. The MMU has a translation lookaside buffer (TLB). Assume that when a page is evicted from the main memory, the corresponding blocks in the cache are marked as invalid. For a given memory reference, which of the following sequences of events can NEVER happen?
Q6. numerical +2 / 0
Consider a hard disk with a rotational speed of 15000 rpm . The time to move the read/ write head from a track to its adjacent track is 1 millisecond. Initially, the head is on track 0 . The number of sectors per track is 400 . The sector size is 1024 bytes. It is necessary to transfer data from 10 randomly located sectors in each of the following tracks in the order: 5,12 and 7. The total time for the data transfer (in milliseconds) from the hard disk is $\_\_\_\_$ . (rounded off to one decimal place)
Computer Organization

Computer Organization

Q1. mcq single +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?
Q2. mcq single +2 / 0
The size of the physical address space of a processor is $2^{32}$ bytes. The capacity of a cache memory unit is $2^{23}$ bytes. The cache block size is 128 bytes. The cache memory unit can be built as a direct mapped cache or as a $K$-way set-associative cache, where $K=2^L$ and $L \in\{1,2,3\}$. Let the length of the TAG field be $M$ bits for the direct mapped cache, and $N$ bits for the set-associative cache. Which one of the following options is true?
Q3. mcq single +1 / 0
Which one of the following dependencies among the register operands of different instructions can cause a data hazard in a pipelined processor?
Q4. numerical +2 / 0
The EX stage of a pipelined processor performs the memory read operations for LOAD instructions, and the operations for the arithmetic and logic instructions. Let $t_{E X}$ denote the time taken by the EX stage to perform the operation for an instruction. For each instruction type, the values of $t_{E X}$ and $M$ (the number of instructions of that type in a sequence of 100 instructions for a program $P$ ), are given in the table below. The duration of the pipeline clock cycle is 1 nanosecond. Assume that the latch time for the interstage buffers in the pipeline is negligible. Instruction $$ t_{E X} \text { in nanoseconds } $$ M LOAD 1.8 15 IMUL 1.5 10 IDIV 2.5 5 FADD 1.7 10 FSUB 1.7 5 FMUL 2.8 15 FDIV 3.2 5 All other instruction Less than 1.0 35 When program $P$ is executed, the number of clock cycles for which the pipeline is stalled due to structural hazards in the EX stage is $\_\_\_\_$ . (answer in integer)
Q5. mcq single +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
Q6. mcq single +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.