Skip to content
Early access — you're among the first to try PYQLabs. Share feedback

GATE 1997 CSE & IT

33 questions across 1 session

PYQ 1

$$I/O$$ redirection

Operating Systems·MCQ·✓ keyed
PYQ 2

Thrashing

Operating Systems·MCQ·✓ keyed
PYQ 3

Which of the following is essential for converting an infix expression to the postfix form efficiently?

Data Structures·MCQ·easy·✓ keyed
PYQ 4

An operating system contains 3 user processes each requiring 2 units of resource R.The minimum number of units of R such that no deadlocks will ever arise is

Operating Systems·MCQ·easy·✓ keyed
PYQ 5

For a database relation $$R(a,b,c,d),$$ where the domains of $$a, b, c, d$$ include only atomic values, only the following functional dependencies and those that can be inferred fr...

Database Management System·MCQ·easy·✓ keyed
PYQ 6

Let $$f\left( {x,y,z} \right) = \overline x + \overline y x + xz$$ be a switching function. Which one of the following is valid?

Digital Logic·MCQ·medium·✓ keyed
PYQ 7

A priority queue Q is used to implement a stack that stores characters. PUSH (C) is implemented INSERT (Q, C, K) where K is an appropriate integer key chosen by the implementation....

Data Structures·MCQ·easy·✓ keyed
PYQ 8

The determination of the matrix $$$\left[ {\matrix{ 6 & { - 8} & 1 & 1 \cr 0 & 2 & 4 & 6 \cr 0 & 0 & 4 & 8 \cr 0 & 0 & 0 & { - 1} \cr } } \right]\,\,is$$$

Discrete Mathematics·MCQ·easy·✓ keyed
PYQ 9

The number of equivalence relations on the set $$\left\{ {1,2,3,4} \right\}$$ is

Discrete Mathematics·MCQ·easy·✓ keyed
PYQ 10

Dirty bit for a page in a page table

Operating Systems·MCQ·easy·✓ keyed
PYQ 11

Locality of reference implies that the page reference being made by a process

Operating Systems·MCQ·easy·✓ keyed
PYQ 12

An $$N$$-bit carry look ahead adder, where $$N$$ is a multiple of $$4,$$ employs $${\rm I}cs$$ $$74181$$ ($$4$$bit $$ALU$$) and $$74182$$ ($$4$$ bit carry look ahead generator). Th...

Computer Organization·MCQ·medium·✓ keyed
PYQ 13

When an interrupt occurs, an Operating System

Operating Systems·MCQ·easy·✓ keyed
PYQ 14

Given the following Pascal like program segment: Procedure A; x,y:intger; Procedure B; x,z:real; S1 end B; Procedure C; i:integer; S2; end C; end A; The variables accessible in S1...

Programming Languages·MCQ·easy·✓ keyed
PYQ 15

Heap allocation is required for languages.

Programming Languages·MCQ·easy·✓ keyed
PYQ 16

The correct matching for the following pairs is A. All pairs shortest path 1. Greedy B. Quick Sort 2. Depth-First Search C. Minimum weight spanning tree 3. Dynamic Programming D. C...

Algorithms·MTF·easy·✓ keyed
PYQ 17

The concatenation of two lists is to be performed on 0(1) time. Which of the following implementations of a list should be used?

Algorithms·MCQ·easy·✓ keyed
PYQ 18

Let T(n) be the function defined by $$T(1) =1, \: T(n) = 2T (\lfloor \frac{n}{2} \rfloor ) + \sqrt{n}$$ Which of the following statements is true?

Algorithms·MCQ·easy·✓ keyed
PYQ 19

The correct matching for the following pairs is (a) Disk scheduling $$\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,$$(1) Round robin (b) Batch processing $$\,\,\,\,\,\,\,\,\,\,\,\,\,\...

Operating Systems·MTF·easy·✓ keyed
PYQ 20

A binary search tree contains the value 1, 2, 3, 4, 5, 6, 7, 8. The tree is traversed in pre-order and the values are printed out. Which of the following sequences is a valid outpu...

Data Structures·MCQ·medium·✓ keyed
PYQ 21

The probability that it will rain today is 0.5. The probability that it will rain tomorrow is 0.6. The probability that it will rain either today or tomorrow is 0.7. That is the pr...

Discrete Mathematics·MCQ·easy·✓ keyed
PYQ 22

What is the maximum value of the function $$f\left( x \right) = 2{x^2} - 2x + 6$$ in the interval $$\left[ {0,2} \right]$$?

Discrete Mathematics·MCQ·easy·✓ keyed
PYQ 23

Let $$A = ({a_{ij}})$$ be and n-rowed square matrix and $${I_{12}}$$ be the matrix obtained by interchanging the first and second rows of the n-rowed Identity matrix. Then$${AI_{12...

Discrete Mathematics·MCQ·easy·✓ keyed
PYQ 24

The correct matching for the following pairs is $$\,\,\,\,\,$$ List - $${\rm I}$$ (a) $$DMA$$ $$\,\,$$ $${\rm I}/O$$ (b) Cache (c) Interrupt $${\rm I}/O$$ (d) Condition Code Regist...

Operating Systems·MTF·easy·✓ keyed
PYQ 25

Let $$^ * $$ be defined as $${x^ * }y = \overline x + y,$$ Let $$z = {x^ * }y.$$ Value of $${z^ * }x$$ is

Digital Logic·MCQ·easy·✓ keyed
PYQ 26

Let $$R (a, b, c)$$ and $$S(d, e, f)$$ be two relations in which $$d$$ is the foreign key of $$S$$ that refers to the primary key of $$R.$$ Consider the following four operations $...

Database Management System·MCQ·easy·✓ keyed
PYQ 27

Given $$\sqrt {\left( {224} \right),} = {\left( {13} \right)_r},$$ The value of the radix' $$r$$ is:

Digital Logic·MCQ·easy·✓ keyed
PYQ 28

In the following grammar: $$\eqalign{ & X:: = X \oplus {Y \over Y} \cr & Y:: = Z*{Y \over Z} \cr & Z:: = id \cr} $$ Which of the following is true?

Compiler Design·MCQ·easy·✓ keyed
PYQ 29

Each process P i ,i=1.....9 is coded as follows Repeat P(mutex){ critical section } V(mutex) Forever The code for P 10 is identical except that it uses V(mutex) in place of P(mutex...

Operating Systems·MCQ·medium·✓ keyed
PYQ 30

$$\sum { = \left\{ {a,b} \right\},\,\,} $$ which one of the following sets is not countable.

Theory of Computation·MCQ·easy·✓ keyed
PYQ 31

Which one of the following regular expressions over $$\left\{ {0,\,\,1} \right\}$$ denotes the set of all strings not containing $$100$$ as substring?

Theory of Computation·MCQ·medium·✓ keyed
PYQ 32

Which one of the following is not decidable?

Theory of Computation·MCQ·easy·✓ keyed
PYQ 33

Which of the following languages over $$\left\{ {a,b,c} \right\}$$ is accepted by Deterministic push down automata?

Theory of Computation·MCQ·easy·✓ keyed