Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged gatecse2025-set2
22
22 votes
10
10 answers
13.2k
13.2k views
GATE CSE 2025 | Set 2 | Question: 41
Consider two grammars $G_{1}$ and $G_{2}$ with the production rules given below: $G_{1} : S \rightarrow$ $if$ $E$ $then$ $S$ $|$ $if$ $E$ $then$ $S$ $else$ $S$ $|$ $a$ ...
admin
13.2k
views
asked
Feb 27, 2025
Compiler Design
gatecse2025-set2
compiler-design
grammar
multiple-selects
easy
two-marks
+
–
24
24 votes
7
7 answers
9.6k
9.6k views
GATE CSE 2025 | Set 2 | Question: 42
Let $\Sigma=\{a, b, c\}$. For $x \in \Sigma^{*}$, and $\alpha \in \Sigma$, let $\#_{\alpha}(x)$ denote the number of occurrences of $\alpha$ in $x$. Which one or more of...
admin
9.6k
views
asked
Feb 27, 2025
Theory of Computation
gatecse2025-set2
theory-of-computation
regular-language
multiple-selects
two-marks
+
–
25
25 votes
5
5 answers
10.4k
10.4k views
GATE CSE 2025 | Set 2 | Question: 43
Consider the database transactions T1 and T2 , and data items X and Y . Which of the schedule(s) is/are conflict serializable?$$\begin{array}{|ll|} \hline \textbf{Transa...
admin
10.4k
views
asked
Feb 27, 2025
Databases
gatecse2025-set2
databases
conflict-serializable
multiple-selects
two-marks
+
–
31
31 votes
5
5 answers
11.9k
11.9k views
GATE CSE 2025 | Set 2 | Question: 44
Consider the following relational schema: Students ($\underline{\text{rollno: integer}},$ name: string, age: integer, cgpa: real) Courses ($\underline{\text{courseno: int...
admin
11.9k
views
asked
Feb 27, 2025
Databases
gatecse2025-set2
databases
sql
multiple-selects
two-marks
+
–
25
25 votes
7
7 answers
12.3k
12.3k views
GATE CSE 2025 | Set 2 | Question: 45
Given a computing system with two levels of cache (L1 and L2) and a main memory. The first level (L1) cache access time is $1$ nanosecond (ns) and the "hit rate" for L1 c...
admin
12.3k
views
asked
Feb 27, 2025
CO & Architecture
gatecse2025-set2
co-and-architecture
cache-memory
average-memory-access-time
multilevel-cache
numerical-answers
two-marks
+
–
18
18 votes
5
5 answers
8.7k
8.7k views
GATE CSE 2025 | Set 2 | Question: 46
A $5$-stage instruction pipeline has stage delays of $180,250,150,170$, and $250$, respectively, in nanoseconds. The delay of an inter-stage latch is $10$ nanoseconds. As...
admin
8.7k
views
asked
Feb 27, 2025
CO & Architecture
gatecse2025-set2
co-and-architecture
pipelining
numerical-answers
easy
two-marks
+
–
29
29 votes
6
6 answers
13.7k
13.7k views
GATE CSE 2025 | Set 2 | Question: 47
In a $\mathrm{B}^{+}$- tree where each node can hold at most four key values, a root to leaf path consists of the following nodes:\[\mathrm{A}=(49,77,83,-), \mathrm{B}=(7...
admin
13.7k
views
asked
Feb 27, 2025
Databases
gatecse2025-set2
databases
b-tree
numerical-answers
two-marks
+
–
49
49 votes
12
12 answers
19.8k
19.8k views
GATE CSE 2025 | Set 2 | Question: 48
A computer system supports a logical address space of $2^{32}$ bytes. It uses two-level hierarchical paging with a page size of $4096$ bytes. A logical address is divided...
admin
19.8k
views
asked
Feb 27, 2025
Operating System
gatecse2025-set2
operating-system
paging
multilevel-paging
numerical-answers
two-marks
+
–
14
14 votes
5
5 answers
10.2k
10.2k views
GATE CSE 2025 | Set 2 | Question: 49
Consider the following algorithm someAlgo that takes an undirected graph $G$ as input. ...
admin
10.2k
views
asked
Feb 27, 2025
Algorithms
gatecse2025-set2
algorithms
breadth-first-search
graph-search
numerical-answers
two-marks
+
–
43
43 votes
6
6 answers
17.1k
17.1k views
GATE CSE 2025 | Set 2 | Question: 50
Let $\Sigma=\{1,2,3,4\}$. For $x \in \Sigma^{*}$, let $\operatorname{prod}(x)$ be the product of symbols in $x$ modulo 7. We take $\operatorname{prod}(\epsilon)=1$, where...
admin
17.1k
views
asked
Feb 27, 2025
Theory of Computation
gatecse2025-set2
theory-of-computation
finite-automata
number-of-states
numerical-answers
two-marks
+
–
24
24 votes
4
4 answers
11.8k
11.8k views
GATE CSE 2025 | Set 2 | Question: 51
An application executes $6.4 \times 10^{8}$ number of instructions in $6.3$ seconds. There are four types of instructions, the details of which are given in the table. Th...
admin
11.8k
views
asked
Feb 27, 2025
CO & Architecture
gatecse2025-set2
co-and-architecture
instruction-execution
clock-cycles
numerical-answers
two-marks
+
–
31
31 votes
6
6 answers
12.7k
12.7k views
GATE CSE 2025 | Set 2 | Question: 52
Consider the following C program:#include<stdio.h int main(){ int a; int arr[5] = {30,50,10}; int *ptr; ptr = &arr[0] + 1; a = *ptr; (*ptr)++; ptr++; printf("%d", a + (*p...
admin
12.7k
views
asked
Feb 27, 2025
Programming in C
gatecse2025-set2
programming-in-c
pointers
output
numerical-answers
two-marks
+
–
24
24 votes
4
4 answers
8.5k
8.5k views
GATE CSE 2025 | Set 2 | Question: 53
Consider the following C program:#include <stdio.h int g(int n) { return (n+10); } int f(int n) { return g(n*2); } int main() { int sum, n; sum=0; for (n=1; n<3; n++) sum...
admin
8.5k
views
asked
Feb 27, 2025
Programming in C
gatecse2025-set2
programming-in-c
output
numerical-answers
two-marks
+
–
22
22 votes
3
3 answers
9.4k
9.4k views
GATE CSE 2025 | Set 2 | Question: 54
A quadratic polynomial $(x-\alpha)(x-\beta)$ over complex numbers is said to be square invariant if $(x-\alpha)(x-\beta)=\left(x-\alpha^{2}\right)\left(x-\beta^{2}\right)...
admin
9.4k
views
asked
Feb 27, 2025
Probability
gatecse2025-set2
probability
square-invariant
numerical-answers
two-marks
+
–
34
34 votes
4
4 answers
11.1k
11.1k views
GATE CSE 2025 | Set 2 | Question: 55
The unit interval $(0,1)$ is divided at a point chosen uniformly distributed over $(0,1)$ in $\mathbb{R}$ into two disjoint subintervals.The expected length of the subint...
admin
11.1k
views
asked
Feb 27, 2025
Probability
gatecse2025-set2
probability
uniform-distribution
numerical-answers
two-marks
+
–
34
34 votes
8
answers
8 answers
12.3k
12.3k views
GATE CSE 2025 | Set 2 | Question: 1
If $A=\left(\begin{array}{cc}1 & 2 \\ 2 & -1\end{array}\right)$, then which ONE of the following is $A^{8}$ ?$\left(\begin{array}{cc}25 & 0 \\ 0 & 25\end{array}\right...
Arjun
12.3k
views
asked
Feb 27, 2025
Linear Algebra
gatecse2025-set2
linear-algebra
matrix
easy
one-mark
+
–
20
20 votes
4
4 answers
10.6k
10.6k views
GATE CSE 2025 | Set 2 | Question: 2
The value of $x$ such that $x>1$, satisfying the equation $\int_1^x t \ln t \: dt = \frac{1}{4}$ is$\sqrt{e}$$e$$e^2$$e-1$
Arjun
10.6k
views
asked
Feb 27, 2025
Calculus
gatecse2025-set2
calculus
definite-integral
one-mark
+
–
22
22 votes
7
7 answers
11.8k
11.8k views
GATE CSE 2025 | Set 2 | Question: 3
Consider a binary tree $T$ in which every node has either zero or two children. Let $n>0$ be the number of nodes in $T$.Which ONE of the following is the number of no...
Arjun
11.8k
views
asked
Feb 27, 2025
Data Structures
gatecse2025-set2
data-structures
binary-tree
one-mark
+
–
29
29 votes
5
answers
5 answers
12.1k
12.1k views
GATE CSE 2025 | Set 2 | Question: 4
Let $L$, $M$, and $N$ be non-singular matrices of order $3$ satisfying the equations $L^2 = L^{-1}$, $M=L^8$ and $N=L^2$. Which ONE of the following is the value of the d...
Arjun
12.1k
views
asked
Feb 27, 2025
Linear Algebra
gatecse2025-set2
linear-algebra
determinant
easy
one-mark
+
–
53
53 votes
8
8 answers
15.6k
15.6k views
GATE CSE 2025 | Set 2 | Question: 5
Let $P(x)$ be an arbitrary predicate over the domain of natural numbers. Which ONE of the following statements is TRUE?$\big (P(0) \wedge \big( \forall x [P(x) \Righta...
Arjun
15.6k
views
asked
Feb 27, 2025
Mathematical Logic
gatecse2025-set2
mathematical-logic
first-order-logic
one-mark
+
–
23
23 votes
5
5 answers
7.0k
7.0k views
GATE CSE 2025 | Set 2 | Question: 6
Consider the following statements:Address Resolution Protocol (ARP) provides a mapping from an IP address to the corresponding hardware (link-layer) address.A single...
Arjun
7.0k
views
asked
Feb 27, 2025
Computer Networks
gatecse2025-set2
computer-networks
tcp
arp
easy
one-mark
+
–
14
14 votes
4
4 answers
6.9k
6.9k views
GATE CSE 2025 | Set 2 | Question: 7
Consider the routing protocols given in List I and the names given in List II:$$\begin{array}{|ll|ll|}\hline & \textbf{List I} & & \textbf{List II} \\\hline \text{(i)} ...
Arjun
6.9k
views
asked
Feb 27, 2025
Computer Networks
gatecse2025-set2
computer-networks
match-the-following
routing-protocols
easy
one-mark
+
–
19
19 votes
3
3 answers
8.8k
8.8k views
GATE CSE 2025 | Set 2 | Question: 8
A machine receives an $IPv4$ datagram. The protocol field of the $IPv4$ header has the protocol number of a protocol $X$.Which ONE of the following is NOT a possible c...
Arjun
8.8k
views
asked
Feb 27, 2025
Computer Networks
gatecse2025-set2
computer-networks
ip-addressing
one-mark
+
–
34
34 votes
7
7 answers
14.0k
14.0k views
GATE CSE 2025 | Set 2 | Question: 9
Consider the following C program:#include <stdio.h void stringcopy (char *, char *); int main() { char a[30] = "@#Hello World!"; stringcopy(a, a+2); printf("%s\n",a)...
Arjun
14.0k
views
asked
Feb 27, 2025
Programming in C
gatecse2025-set2
programming-in-c
strings
output
one-mark
+
–
19
19 votes
7
7 answers
9.6k
9.6k views
GATE CSE 2025 | Set 2 | Question: 10
Consider an unordered list of $N$ distinct integers.What is the minimum number of element comparisons required to find an integer in the list that is NOT the largest ...
Arjun
9.6k
views
asked
Feb 27, 2025
Algorithms
gatecse2025-set2
algorithms
sorting
one-mark
+
–
20
20 votes
4
4 answers
7.8k
7.8k views
GATE CSE 2025 | Set 2 | Question: 11
Consider the following statements about the use of backpatching in a compiler for intermediate code generation:Backpatching can be used to generate code for Boolean e...
Arjun
7.8k
views
asked
Feb 27, 2025
Compiler Design
gatecse2025-set2
compiler-design
backpatching
intermediate-code
one-mark
+
–
23
23 votes
8
8 answers
9.2k
9.2k views
GATE CSE 2025 | Set 2 | Question: 12
Given the following syntax directed translation rules:Rule 1: $R \rightarrow A B\{B . i=R . i-1 ; A . i=B . i ; R . i=A . i+1 ;\}$Rule 2: $P \rightarrow C D\{P . i=C . ...
Arjun
9.2k
views
asked
Feb 27, 2025
Compiler Design
gatecse2025-set2
compiler-design
syntax-directed-translation
one-mark
+
–
27
27 votes
3
3 answers
12.0k
12.0k views
GATE CSE 2025 | Set 2 | Question: 13
Consider a network that uses Ethernet and $IPv4$. Assume that $IPv4$ headers do not use any options field. Each Ethernet frame can carry a maximum of $1500$ bytes in...
Arjun
12.0k
views
asked
Feb 27, 2025
Computer Networks
gatecse2025-set2
computer-networks
fragmentation
ip-addressing
one-mark
+
–
14
14 votes
4
4 answers
6.6k
6.6k views
GATE CSE 2025 | Set 2 | Question: 14
Which ONE of the following languages is accepted by a deteministic pushdown automaton?Any regular languageAny context-free languageAny language accepted by a non-dete...
Arjun
6.6k
views
asked
Feb 27, 2025
Theory of Computation
gatecse2025-set2
theory-of-computation
dpda
one-mark
easy
+
–
16
16 votes
4
4 answers
7.1k
7.1k views
GATE CSE 2025 | Set 2 | Question: 15
Let $G_{1}, G_{2}$ be Context Free Grammars (CFGs) and $R$ be a regular expression. For a grammar $G$, let $L(G)$ denote the language generated by $G$.Which ONE among...
Arjun
7.1k
views
asked
Feb 27, 2025
Theory of Computation
gatecse2025-set2
theory-of-computation
decidability
easy
one-mark
+
–
Page:
1
2
3
next »