GATE CSE 1994 Previous-Year Questions (PYQ)
Read the following instructions carefully:
(i) This question paper consists of Two sections: A & B.
(ii) Section ‘A’ has EIGHT questions. Answer ALL questions in this Section.
(iii) Section ‘B’ has TWENTY questions. Answer any TEN questions in this Section.
(iv) Begin answer for this section on a fresh page.
(v) Answer to questions in each Section should appear together in the same sequence in which they appear in the question paper.
(vi) There will be no negative marking.
Section - A (100 Marks)
Choose one of the alternatives for the following questions:
Question 1.
FORTRAN implementations do not permit recursion because
(a) they use static allocation for variables
(b) they use dynamic allocation for variables
(c) stacks are not available on all machines
(d) it is not possible to implement recursion on all machines
Question 2.
Let A and B be real symmetric matrices of size n × n. Then which one of the following is true?
(a) AA’ = 1
(b) A = A-1
(c) AB = BA
(d) (AB)’ = BA
Question 3.
Backward Euler method for solving the differential equation \(\frac{\mathrm{d}y}{\mathrm{d}x}\)=f(x,y) is specified by, (choose one of the following).
(a) yn+1 = yn + hf(xn, yn)
(b) yn+1 = yn + hf(xn+1,yn+1)
(c) yn+1 = yn-1 + 2hf(xn,yn)
(d) yn+1 = (1+h)f(xn+1,yn+1)
Question 4.
Let A and B be any two arbitrary events. Which one of the following is true?
(a) P(A∩B) = P(A)P(B)
(b) P(A∪B) = P(A) + P(B)
(c) P(A|B) = P(A∩B)P(B)
(d) P(A∪B) ≤ P(A) + P(B)
Question 5.
An unrestricted use of the “goto” statement is harmful because
(a) it makes it more difficult to verify programs
(b) it increases the running time of the programs
(c) it increases the memory required for the programs
(d) it results in the compiler generating longer machine code
Question 6.
The number of distinct simple graphs with upto three nodes is
(a) 15
(b) 10
(c) 7
(d) 9
Question 7.
The recurrence relation that arises in relation with the complexity of binary search is:
(a) T(n) = T(\(\frac n2\)) + k, k a constant
(b) T(n) = 2T(\(\frac n2\)) + k, k a constant
(c) T(n) = T(\(\frac n2\)) + log n
(d) T(n) = T(\(\frac n2\)) + n
Question 8.
The logic expression for the output of the circuit shown in figure below is:
(a) \( \overline AC+\overline BC+CD\)
(b) \(A\overline C+B\overline C+CD\)
(c) \(ABC+\overline C\;\overline D\)
(d) \(\overline A\;\overline B+\overline B\;\overline C\;+\;CD\)
Question 9.
The rank of matrix \(\begin{bmatrix}0&0&-3\\9&3&5\\3&1&1\end{bmatrix}\) is
(a) 0
(b) 1
(c) 2
(d) 3
Question 10.
Some group (G,o) is known to be abelian. Then, which one of the following is true for G?
(a) g = g-1 for every g ∈ G
(b) g = g2 for every g ∈ G
(c) (goh)2 = g2oh2 for every g, h ∈ G
(d) G is of finite order
Question 11.
In a compact single dimensional array representation for lower triangular matrices (i.e all the elements above the diagonal are zero) of size , n × n non-zero elements (i.e elements of the lower triangle) of each row are stored one after another, starting from the first row, the index of the (i, j)th element of the lower triangular matrix in this new representation is:
(a) i + j
(b) i + j – 1
(c) \(j+\frac{i(i-1)}2\)
(d) \(i+\frac{j(j-1)}2\)
Question 12.
Generation of intermediate code based on an abstract machine model is useful in compilers because
(a) It makes implementation of lexical analysis and syntax analysis easier
(b) Syntax-directed translations can be written for intermediate code generation
(c) It enhances the portability of the front end of the compiler
(d) It is not possible to generate code for real machines directly from high level language programs
Question 13.
A memory page containing a heavily used variable that was initialized very early and is in constant use is removed when
(a) LRU page replacement algorithm is used
(b) FIFO page replacement algorithm is used
(c) LFU page replacement algorithm is used
(d) None of the above
Question 14.
Which of the following permutations can be obtained in the output (in the same order) using a stack assuming that the input is the sequence 1, 2, 3, 4, 5 in that order?
(a) 3, 4, 5, 1, 2
(b) 3, 4, 5, 2, 1
(c) 1, 5, 2, 3, 4
(d) 5, 4, 3, 1, 2
Question 15.
The number of substrings (of all lengths inclusive) that can be formed from a character string of length n is
(a) n
(b) n2
(c) \(\frac{n(n-1)}2\)
(d) \(\frac{n(n+1)}2\)
Question 16.
Which of the following conversions is not possible (algorithmically)?
(a) Regular grammar to context-free grammar
(b) Non-deterministic FSA to deterministic FSA
(c) Non-deterministic PDA to deterministic PDA
(d) Non-deterministic Turing machine to deterministic Turing machine
Question 17.
Linked lists are not suitable data structures of which one of the following problems?
(a) Insertion sort
(b) Binary search
(c) Radix sort
(d) Polynomial manipulation
Question 18.
Which of the following features cannot be captured by context-free grammars?
(a) Syntax of if-then-else statements
(b) Syntax of recursive procedures
(c) Whether a variable has been declared before its use
(d) Variable names of arbitrary length
Question 19.
Which of the following algorithm design techniques is used in the quicksort algorithm?
(a) Dynamic programming
(b) Backtracking
(c) Divide and conquer
(d) Greedy method
Question 20.
In which one of the following cases is it possible to obtain different results for call-by reference and call-by-name parameter passing methods?
(a) Passing a constant value as a parameter
(b) Passing the address of an array as a parameter
(c) Passing an array element as a parameter
(d) Passing an array following statements is true
Question 21.
Which one of the following statements is true?
(a) Macro definitions cannot appear within other macro definitions in assembly language programs
(b) Overlaying is used to run a program which is longer than the address space of computer
(c) Virtual memory can be used to accommodate a program which is longer than the address space of a computer
(d) It is not possible to write interrupt service routines in a high level language
Question 22.
Which one of the following statements is false?
(a) Optimal binary search tree construction can be performed efficiently using dynamic programming.
(b) Breadth-first search cannot be used to find connected components of a graph
(c) Given the prefix and postfix walks over a binary tree, the binary tree cannot be uniquely constructed.
(d) Depth-first search can be used to find connected components of a graph.
Question 23.
Consider the following two functions:
\(g_1(n)=\left\{\begin{array}{l}n^3\;\;for\;\;0\leq n\leq10,000\\n^2\;for\;\;n\geq10,000\end{array}\right.\)
\(g_2(n)=\left\{\begin{array}{l}n\;\;for\;\;0\leq n\leq100\\n^3\;for\;\;n>100\end{array}\right.\)
Which of the following is true?
(a) g1(n) is O(g2(n))
(b) g1(n) is O(n3)
(c) g2(n) is O(g1(n))
(d) g2(n) is O(n)
Question 24.
Consider the following heap (figure) in which blank regions are not in use and hatched region are in used.
The sequence of requests for blocks of size 300, 25, 125, 50 can be satisfied if we use
(a) either first fit or best fit policy (any one)
(b) first fit but not best fit policy
(c) best fit but first fit policy
(d) None of the above
Question 25.
Fill in the blanks:
2.1 The number of flip-flops required to construct a binary modulo N counter is __________
2.2 On the set N of non-negative integers, the binary operation __________ is associative and non-commutative.
2.3 Amongst the properties {reflexivity, symmetry, anti-symmetry, transitivity} the relation R ={(x,y) ∈ N2| x ≠ y} satisfies __________
2.4 The number of subsets {1,2,……n} with odd cardinality is __________
2.5 The
number of edges in a regular graph of degree d and n vertices is _________
2.6 The probability of an event B is P1. The probability that events A and B occur together is P2, while the probability that A and \(\overline B\) occur together is P3. The probability of the event A in terms of P1, P2 and P3 is __________
2.7 Consider an n-bit (including sign bit) 2’s complement representation of an integer number. The range of integer values, N, that can be represented is __________ ≤ N ≤ __________
2.8 Let A, B, and C be independent events which occur with probabilities 0.8, 0.5, and 0.3 respectively. The probability of occurrence of at least one of the event is __________
2.9 The Hasse diagrams of all the lattices with up to four elements are __________ (write all the relevant Hasse diagrams).
2.10 The regular expression for the language recognized by the finite state automaton of figure is __________
Question 26.
Answer the following questions as indicated.
3.1. State True or False with one line explanation
Multiplexing of address/data lines in 8085 microprocessor reduces the instruction execution time.
3.2. State True or False with one line explanation
Expanding opcode instruction formats are commonly employed in RISC. (Reduced Instruction Set Computers) machines.
3.3. State True or False with one line explanation
A FSM (Finite State Machine) can be designed to add two integers of any arbitrary length (arbitrary number of digits).
3.4. Match the following items
3.5. Match the following items
3.6. State True or False with reason
There is always a decomposition into Boyce-Codd normal form (BCNF) that is lossless and dependency preserving.
3.7. An instance of a relational scheme R(A, B, C) has distinct values for attribute A. Can you conclude that A is a candidate key for R?
3.8. Give a relational algebra expression using only the minimum number of operators from (∪,− ) which is equivalent to R ∩ S.
3.9. Every subset of a countable set is countable.
State whether the above statement is true or false with reason.
3.10. Match the following items
(i) ECL | (a) Unipolar; very high speed difficult to fabricate; good resistance to radiation |
(ii) GA As | (b) Unipolar; low power; modest speed and packing density |
(iii) TTL | (c) Bipolar; highest speed silicon IC; low packing density |
(iv) CMOS | (d) Bipolar, modes packing density, inexpensive |
3.11. State True or False with reason
Logical data independence is easier to achieve than physical data independence
3.12. Find the inverse of the matrix \(\begin{bmatrix}1&0&1\\-1&1&1\\0&1&0\end{bmatrix}\)
3.13. Let p and q be propositions. Using only the truth table decide whether p ⇔ q does not imply p → q is true or false.
Question 27.
(a) Let * be a Boolean operation defined as
\(A\ast B=AB+\overline A\;\overline B\) If \(C=A\ast B\) then
evaluate and fill in the blanks:
(i) A * A = _______
(ii) C * A = _______
(b) Solve the following boolean equations for the values of A, B and C:
AB + \(\overline AC\) = 1
AC + B = 0
Question 28.
A 3-ary tree is a tree in which every internal node has exactly three children. Use induction to prove that the number of leaves in a 3-ary tree with n interval nodes is 2(n-1) + 3.
Question 29.
What function of x, n is computed by this program?
Function what (x, n:integer): integer:
Var
value : integer;
begin
value:=1
if n>0 then
begin
if n mod 2 = 1 then
value:=value*x;
value:=value*what(x*x,n div 2);
end;
what:value
end;
Question 30.
An array A contains n integers in locations A[0],A[1], ………………..A[n-1]. It is required to shift the elements of the array cyclically to the left by K places, where 1≤K≤n-1. An incomplete algorithm for doing this in linear time, without using another is given below. Complete the algorithm by filling in the blanks. Assume all variables are suitably declared.
min:=n;
i=0;
while _____do
begin
temp:=A[i];
j:=i;
while _____do
begin
A[j]:=_____;
j:=(j+K) mod n;
if j<min then
min:=j;
end;
A[(n+i-k)mod n]:=________;
I:=___________;
end;
Question 31.
A rooted tree with 12 nodes has its nodes numbered 1 to 12 in pre-order. When the tree is traversed in post-order, the nodes are visited in the order 3, 5, 4, 2, 7, 8, 6, 10, 11, 12, 9, 1.
Reconstruct the original tree from this information, that is, find the parent of each node, and show the tree diagrammatically.
Section - B (50 Marks)
(Answer any Ten questions in this section)
Question 32.
Following 7-bit single error correcting Hamming coded message is received. (figure below):
7 6 5 4 3 2 1 bit No.
1 | 0 | 0 | 0 | 1 | 1 | 0 |
Determine if the message is correct (assuming that at most 1 bit could be corrupted). If the message contains an error find the bit which is erroneous and gives the correct message.
Question 33.
Write a program in 8085 Assembly language to Add two 16-bit unsigned BCD (8-4-2-1 Binary Coded Decimal) number. Assume the two input operands are in BC and DE Register pairs. The result should be placed in the register pair BC. (Higher order register in the register pair contains higher order digits of operand)
Question 34.
Find the contents of the flip-flop Q2,Q1, and Q0 in the circuit of figure, after giving four clock pulses to the clock terminal. Assume Q2Q1Q0 = 000 initially.
Question 35.
(a) Assume that a CPU has only two registers R1 and R2 and that only the following instruction is available
XOR Ri,Rj; {Rj ← Ri ⊕ Rj, for i, j = 1,2 }
Using this XOR instruction, find an instruction sequence in order to exchange the contents of the registers R1 and R2.
(b) The line p of the circuit shown in figure has stuck at 1 fault. Determine an input test to detect the fault.
Question 36.
Consider the following relational schema:
COURSES (cno , cname)
STUDENTS (rollno , sname, age, year)
REGISTERED FOR (cno , rollno)
The underlined attributes indicate the primary keys for the relations. The ‘year’ attribute for the STUDENTS relation indicates the year in which the student is currently studying (First year, Second year etc.)
(a) Write a relational algebra query to
Print the roll number of students who have registered for cno 322.
(b) Write a SQL query to
Print the age and year of the youngest student in each year.
Question 37.
Consider B+ −tree of order d shown in figure?
(A) B+ −tree of order d contains between d and 2d keys in each node
(a) Draw the resulting B+ −tree after inserted in the figure.
(b) For a B+ −tree of order d with n leaf nodes, the number of nodes accessed during a search is O(-).
Question 38.
Every element a of some ring (R, +, 0 ) satisfies the equation aoa = a. Decide whether or not the ring is commutative.
Question 39.
State whether the following statements are True or False with reasons for your answer:
(a) Coroutine is just another name for a subroutine.
(b) A two pass assembler uses its machine opcode table in the first pass of assembly.
Question 40.
State whether the following statements are True or False with reasons for your answer
(a) A subroutine cannot always be used to replace a macro in an assembly language program.
(b) A symbol declared as ‘external’ in assembly language is assigned an address outside the program by the assembler itself.
Question 41.
(a) Given a set
S = {x| there is an x-block of 5’s in the decimal expansion of π}
(Note: x-block is a maximal block of x successive 5’s.)
Which of the following statements is true with respect to S? No reasons need to be given for the answer.
(i) S is regular
(ii) S is recursively enumerable
(iii) S is not recursively enumerable
(iv) S is recursive
(b) Given that a language L1 is regular and that the language L1 ∪ L2 is regular, is the language L2 always regular? Prove your answer.
Question 42.
A grammar G is in Chomsky-Normal Form (CNF) if all its productions are of the form A -> BC or A -> a, where A, B and C, are non-terminals and a is a terminal. Suppose G is a CFG in CNF and w is a string in L(G) of length, then how long is a derivation of w in G?
Question 43.
Consider the following recursive function:
function fib (1:integer);integer;
begin
if (n=0) or (n=1) then fib:=1
else fib:=fib(n-1) + fib(n-2)
end;
The above function is run on a computer with a stack of 64 bytes. Assuming that only return address and parameter and passed on the stack, and that an integer value and an address takes 2 bytes each, estimate the maximum value of n for which the stack will not overflow. Give reasons for your answer.
Question 44.
Consider the program below:
Program main;
var r:integer;
procedure two;
begin write (r) end;
procedure one;
var r:integer;
begin r:=5 two; end
begin r:=2;
two; one; two;
end.
What is printed by the above program if
(i) Static scoping is assumed for all variables;
(ii) Dynamic scoping is assumed for all variables.
Give reasons for your answer.
Question 45.
Suppose we have a computer with a single register and only three instructions given below:
| LOAD addren | ; load register |
| ; from addren | |
| STORE addren | ; store register |
| ; at addren | |
| ADD addren | ; add register to |
| ; contents of addren | |
| ; and place the result | |
| ; in the register |
Consider the following grammar:
A → id :=E
E → E + T|T
T → (E)|id
Write a syntax-directed translation to generate code using this grammar for the computer described above.
Question 46.
An independent set in a graph is a subset of vertices such that no two vertices in the subset are connected by an edge. An incomplete scheme for a greedy algorithm to find a maximum independent set in a tree is given below:
V: Set of all vertices in the tree; I:=φ;
While V ≠ φ do
begin
select a vertex u; ∈ V such that
V:=V – {u};
if u is such that
then 1:= I ∪ {u}
end;
output(I);
(a) Complete the algorithm by specifying the property of vertex u in each case
(b) What is the time complexity of the algorithm?
Question 47.
An array a contains n integers in non-decreasing order, A[1] ≤ A[2] ≤….≤A[n]. Describe, using Pascal like pseudo code, a linear time algorithm to find i, j, such that A[i] + A[j] = a given integer M, if such i, j exist.
Question 48.
A queue Q containing n items and an empty stack S are given. It is required to transfer all the items from the queue to the stack, so that the item at the front of queue is on the top of the stack, and the order of all other items is preserved. Show how this can be done in O(n) time using only a constant amount of additional storage. Note that the only operations which can be performed on the queue and stack are Delete, Insert, Push and Pop. Do not assume any implementation of the queue or stack.
Question 49.
(a) Draw a precedence graph for the following sequential code. The statements are numbered from S1 to S6
S1 | read n |
S2 | i:=1 |
S3 | if i>n goto next |
S4 | a(i):=i+1 |
S5 | i:=i+1 |
S6 | next : Write a(i) |
(b) Can this graph be converted to a concurrent program using parbegin-parend construct only?
Question 50.
Consider the resource allocation graph given in the figure.