cse-module-11-1
cse-module-11-1
From the additional plates given in the options, which one of the combinations of
additional plates would allow the player to construct a five-letter palindrome. The
player should use all the five plates exactly once. The plates can be rotated in their
plane.
(A)
(B)
(C)
(D)
6. Some people believe that “what gets measured, improves”. Some others believe that
“what gets measured, gets gamed”. One possible reason for the difference in the
beliefs is the work culture in organizations. In organizations with good work culture,
metrics help improve outcomes. However, the same metrics are counterproductive in
organizations with poor work culture.
Which one of the following is the CORRECT logical inference based on the
information in the above passage?
(A) Metrics are useful in organizations with poor work culture
(B) Metrics are useful in organizations with good work culture
(C) Metrics are always counterproductive in organizations with good work culture
(D) Metrics are never useful in organizations with good work culture
7. In a recently conducted national entrance test, boys constituted 65% of those who
appeared for the test. Girls constituted the remaining candidates and they accounted
for 60% of the qualified candidates.
Which one of the following is the correct logical inference based on the information
provided in the above passage?
(A) Equal number of boys and girls qualified
(B) Equal number of boys and girls appeared for the test
(C) The number of boys who appeared for the test is less than the number of girls
who appeared
(D) The number of boys who qualified the test is less than the number of girls who
qualified
8. A box contains five balls of same size and shape. Three of them are green coloured
balls and two of them are orange coloured balls. Balls are drawn from the box one at
a time. If a green ball is drawn, it is not replaced. If an orange ball is drawn, it is
replaced with another orange ball.
First ball is drawn. What is the probability of getting an orange ball in the next draw?
1 8 19 23
(A) (B) (C) (D)
2 25 50 50
9. The corners and mid-points of the sides of a triangle are named using the distinct
letters P, Q, R, S, T and U, but not necessarily in the same order. Consider the
following statements:
The line joining P and R is parallel to the line joining Q and S.
P is placed on the side opposite to the corner T.
S and U cannot be placed on the same side.
Which one of the following statements is correct based on the above information.
(A) P cannot be placed at a corner
(B) S cannot be placed at a corner
(C) U cannot be placed at a mid-point
(D) R cannot be placed at a corner
10. A plot of land must be divided between four families. They want their individual plots
to be similar in shape, not necessarily equal in area. The land has equally spaced
poles, marked as dots in the below figure. Two ropes, R1 and R2, are already
present and cannot be moved.
What is the least number of additional straight ropes needed to create the desired
plots? A single rope can pass through three poles that are aligned in a straight line.
11. Which one of the following statements is TRUE for all positive functions f (n) ?
(A) f(n2) = (f(n)2), when f(n) is a polynomial
(B) f(n2) = o(f(n)2)
(C) f(n2) = O(f(n)2), when f(n) is an exponential function
(D) f(n2) = (f(n)2)
12. Which one of the following regular expressions correctly represents the language of
the finite automaton given below?
14. In a relational data model, which one of the following statements is TRUE?
(A) A relation with only two attributes is always in BCNF.
(B) If all attributes of a relation are prime attributes, then the relation is in BCNF.
(C) Every relation has at least one non-prime attribute.
(D) BCNF decompositions preserve functional dependencies.
15. Consider the problem of reversing a singly linked list. To take an example, given the
linked list below,
Which one of the following statements is TRUE about the time complexity of
algorithms that solve the above problem in O(1) space?
(A) The best algorithm for the problem takes (n) time in the worst case.
(B) The best algorithm for the problem takes (n log n) time in the worst case.
(C) The best algorithm for the problem takes (n2) time in the worst case.
(D) It is not possible to reverse a singly linked list in O(1) space.
16. Suppose we are given n keys, m hash table slots, and two simple uniform hash
functions h1 and h2. Further suppose our hashing scheme uses h1 for the odd keys
and h2 for the even keys. What is the expected number of keys in a slot?
m n 2n n
(A) (B) (C) (D)
n m m 2m
17. Which one of the following facilitates transfer of bulk data from hard disk to main
memory with the highest throughput?
(A) DMA based I/O transfer
(B) Interrupt driven I/O transfer
(C) Polling based I/O transfer
(D) Programmed I/O transfer
18. Let R1 and R2 be two 4-bit registers that store numbers in 2’s complement form.
For the operation R1 + R2, which one of the following values of R1 and R2 gives an
arithmetic overflow?
(A) R1 = 1011 and R2 = 1110
(B) R1 = 1100 and R2 = 1010
(C) R1 = 0011 and R2 = 0100
(D) R1 = 1001 and R2 = 1111
19. Consider the following threads, T1, T2, and T3 executing on a single processor,
synchronized using three binary semaphore variables, S1, S2, and S3, operated upon
using standard wait ( ) and signal ( ). The threads can be context switched in any
order and at any time.
T1 T2 T3
20. Consider the following two statements with respect to the matrices Am×n, Bn×m, Cn×n
and Dn×n.
Statement 1 : tr(AB) = tr(BA)
Statement 2 : tr(CD) = tr(DC)
where tr() represents the trace of a matrix. Which one of the following holds?
(A) Statement 1 is correct and Statement 2 is wrong.
(B) Statement 1 is wrong and Statement 2 is correct.
(C) Both Statement 1 and Statement 2 are correct.
(D) Both Statement 1 and Statement 2 are wrong.
}
(A) 1, 10, 11 (B) 1, 10, 14 (C) 10, 14, 11 (D) 10, 10, 14
22. Consider an enterprise network with two Ethernet segments, a web server and a
firewall, connected via three routers as shown below.
Q.23 – Q.27 Multiple Select Questions (MSQ), carry ONE mark each.
24. Let WB and WT be two set associative cache organizations that use LRU algorithm
for cache block replacement. WB is a write back cache and WT is a write through
cache. Which of the following statements is/are FALSE?
(A) Each cache block in WB and WT has a dirty bit.
(B) Every write hit in WB leads to a data transfer from cache to main memory.
(C) Eviction of a block from WT will not lead to data transfer from cache to main
memory.
(D) A read miss in WB will never lead to eviction of a dirty block from WB.
26. Which of the following statements is/are TRUE with respect to deadlocks?
(A) Circular wait is a necessary condition for the formation of deadlock.
(B) In a system where each resource has more than one instance, a cycle in its wait-
for graph indicates the presence of a deadlock.
(C) If the current allocation of resources to processes leads the system to unsafe
state, then deadlock will necessarily occur.
(D) In the resource-allocation graph of a system, if every edge is an assignment
edge, then the system is not in deadlock state.
Q.28 to Q.35 Numerical Answer Type (NAT), carry ONE mark each.
28. Suppose a binary search tree with 1000 distinct elements is also a complete binary
tree. The tree is stored using the array representation of binary heap trees. Assuming
that the array indices start with 0, the 3rd largest element of the tree is stored at
index_____________.
29. Consider the augmented grammar with {+, , (,), id} as the set of terminals
S S
SS+R|R
RRP|P
P (S) | id
If I0 is the set of two LR(0) items {[S S.], [S S. + R]},
then goto(closure(Icontains exactly _______ items.
30. Consider a simple undirected graph of 10 vertices. If the graph is disconnected, then
the maximum number of edges it can have is ____________.
31. Consider a relation R(A, B, C, D, E) with the following three functional dependencies.
AB C; BC D; C E;
The number of superkeys in the relation R is _____________.
32. The number of arrangements of six identical balls in three identical bins is______.
33. A cache memory that has a hit rate of 0.8 has an access latency 10 ns and miss
penalty 100 ns. An optimization is done on the cache to reduce the miss rate.
However, the optimization results in an increase of cache access latency to 15 ns,
whereas the miss penalty is not affected. The minimum hit rate (rounded off to two
decimal places) needed after the optimization such that it should not increase the
average memory access time is _____________.
34. The value of the following limit is _____________
x
lim
x 0
1 e2 x
35. Consider the resolution of the domain name www.gate.org.in by a DNS resolver.
Assume that no resource records are cached anywhere across the DNS servers and
that iterative query mechanism is used in the resolution. The number of DNS query-
response pairs involved in completely resolving the domain name is_____________.
Q.36 to Q.45 Multiple Choice Questions (MCQ), carry TWO marks each.
36. Which one of the following is the closed form for the generating function of the
sequence {an}n≥0 defined below?
n 1, nisodd
an
1, otherwise
x(1 x 2 ) 1 x(3 x 2 ) 1
(A) (B)
(1 x 2 )2 1 x (1 x 2 )2 1 x
2x 1 x 1
(C) (D)
2 2
(1 x ) 1 x 2 2
(1 x ) 1 x
37. Consider a simple undirected unweighted graph with at least three vertices. If A is the
adjacency matrix of the graph, then the number of 3-cycles in the graph is given by
the trace of
(A) A3 (B) A3 divided by 2
3
(C) A divided by 3 (D) A3 divided by 6
39. Let Ri(z) and Wi(z) denote read and write operations on a data element z by a
transaction Ti, respectively. Consider the schedule S with four transactions.
S : R4(x)R2(x)R3(x)R1(y)W1(y) W2(x) W3(y) R4(y)
Which one of the following serial schedules is conflict equivalent to S?
(A) T1 T3 T4 T2 (B) T1 T4 T3 T2
(C) T4 T1 T3 T2 (D) T3 T1 T4 T2
40. Consider a digital display stem (DS) shown in the figure that displays the contest of
register X. A 16-bit code word is used to load word in X, either from S from R. S is a
1024-word memory segment and R is a 32-word register file. Based on the value of
mode bit M, T selects an input word to load in X. P and Q interface with the
corresponding bits in the code word to choose the addressed word. Which one of the
following represent the functionality of P, Q and T?
41. Consider three floating point numbers A, B and C stored in registers RA, RB and RC,
respectively as per IEEE-754 single precision floating point format. The 32-bit content
stored in these registers (in hexadecimal form) are as follows.
42. Consider four processes P, Q, R, and S scheduled on a CPU as per round robin
algorithm with a time quantum of 4 units. The processes arrive in the order P, Q, R,
S, all at time t = 0. There is exactly one context switch from S to Q, exactly one
context switch from R to Q, and exactly two context switches from Q to R. There is no
context switch from S to P. Switching to a ready process after the termination of
another process is also considered a context switch. Which one of the following is
NOT possible as CPU burst time (in time units) of these processes?
(A) P = 4, Q = 10, R = 6, S = 2 (B) P = 2, Q = 9, R = 5, S = 1
(C) P = 4, Q = 12, R = 5, S = 4 (D) P = 3, Q = 7, R = 7, S = 3
(A) 1 2 3 (B) 1 4 7
10 11 12 10 13 16
19 20 21 19 22 25
(C) 1 2 3 (B) 1 2 3
4 5 6 13 14 15
7 8 9 25 26 27
+
42 43 45
Q.46 to Q.55 Multiple Select Questions (MSQ), carry TWO marks each.
(D) The size of the largest independent set of the given graph is 3. (A subset of
vertices of a graph form an independent set if no two vertices of the subset are
adjacent.)
52. Which of the properties hold for the adjacency matrix A of a simple undirected
unweighted graph having n vertices?
(A) The diagonal entries of A2 are the degrees of the vertices of the graph.
(B) If the graph is connected, then none of the entries of An1 + In can be zero.
(C) If the sum of all the elements of A is at most 2(2n 1), then the graph must be
acyclic.
(D) If there is at least a 1 in each of A’s rows and columns, then the graph must be
connected.
53. Which of the following is/are the eigenvector(s) for the matrix given below?
9 6 2 4
8 6 3 1
20 15 8 5
32 21 7 12
1 1 1 0
1 0 0 1
(A) (B) (C) (D)
0 1 2 3
1 0 2 0
54. Consider a system with 2 KB direct mapped data cache with a block size of 64 bytes.
The system has a physical address space of 64 KB and a word length of 16 bits.
During the execution of a program, four data words P, Q, R, and S are accessed in
that order 10 times (i.e., PQRSPQRS…). Hence, there are 40 accesses to data
cache altogether. Assume that the data cache is initially empty and no other data
words are accessed by the program. The addresses of the first bytes of P, Q, R, and
S are 0xA248, 0xC28A, 0xCA8A, and 0xA262, respectively. For the execution of the
above program, which of the following statements is/are TRUE with respect to the
data cache?
(A) Every access to S is a hit.
(B) Once P is brought to the cache it is never evicted.
(C) At the end of the execution only R and S reside in the cache.
(D) Every access to R evicts Q from the cache.
12.20.164.0 255.255.252.0 R1
12.20.170.0 255.255.254.0 R2
default R3
Which of the following prefixes in CIDR notation can be collectively used to correctly
aggregate all of the subnets in the routing table?
(A) 12.20.164.0/20 (B) 12.20.164.0/22
(C) 12.20.164.0/21 (D) 12.20.168.0/22
Q.56 to Q.65 Numerical Answer Type (NAT), carry TWO marks each.
56. Consider the relational database with the following four schemas and their respective
instances.
Student ( sNo, sName, dNo) Dept (dNo, dName)
Course (cNo, cName, dNo) Register (sNo, cNo)
Student Dept Course Register
sNo sName dNo dNo dName cNo cName dNo sNo cNo
S01 James D01 D01 CSE C11 DS D01 S01 C11
S02 Rocky D01 D02 EEE C12 OS D01 S01 C12
S03 Jackson D02 C21 DE D02 S02 C11
S04 Jane D01 C22 PT D02 S03 C21
S05 Milli D02 C23 CV D03 S03 C22
S03 C23
S04 C11
S04 C12
S05 C11
S05 C21
SQL Query :
SELECT * FROM Student AS S WHERE NOT EXIST
(SELECT cNO FROM Course WHERE dNo = D01
EXCEPT
SELECT cNo FROM Register WHERE sNo = S . sNo)
The number of rows returned by the above SQL query is _________.
57. Consider a network with three routers P, Q, R shown in the figure below. All the links
have cost of unity.
P Q R
The routers exchange distance vector routing information and have converged on the
routing tables, after which the link QR fails. Assume that P and Q send out routing
updates at random times, each at the same average rate. The probability of a routing
loop formation (rounded off to one decimal place) between P and Q, leading to count-
to-infinity problem, is ________.
58. Let G(V, E) be a directed graph, where V = {1, 2, 3, 4, 5} is the set of vertices and E
is the set of directed edges, as defined by the following adjacency matrix A.
1, 1j
i 5
A[i ][j]
0, otherwise
A [ i ] [ j ] = 1 indicates a directed edge from node i to node j. A directed spanning tree
of G, rooted at r V, is defined as a subgraph T of G such that the undirected
version of T is a tree, and T contains a directed path from r to every other vertex in V.
The number of such directed spanning trees rooted at vertex 5 is ________.
59. Consider a 100 Mbps link between an earth station (sender) and a satellite (receiver)
at an altitude of 2100 km. The signal propagates at a speed of 3 ×108 m/s. The time
taken (in milliseconds, rounded off to two decimal places) for the receiver to
completely receive a packet of 1000 bytes transmitted by the sender is_________.
60. Consider the data transfer using TCP over a 1 Gbps link. Assuming that the
maximum segment lifetime (MSL) is set to 60 seconds, the minimum number of bits
required for the sequence number field of the TCP header, to prevent the sequence
number space from wrapping around during the MSL is____________.
61. A processor X1 operating at 2 GHz has a standard 5-stage RISC instruction pipeline
having a base CPI (cycles per instruction) of one without any pipeline hazards. For a
given program P that has 30% branch instructions, control hazards incur 2 cycles
stall for every branch. A new version of the processor X2 operating at same clock
frequency has an additional branch predictor unit (BPU) that completely eliminates
stalls for correctly predicted branches. There is neither any savings nor any additional
stalls for wrong predictions. There are no structural hazards and data hazards for X1
and X2. If the BPU has a prediction accuracy of 80%, the speed up (rounded off to
two decimal places) obtained by X2 over X1 in executing P is____________.
62. Consider the queues Q1 containing four elements and Q2 containing none (shown as
the Initial State in the figure). The only operations allowed on these two queues are
Enqueue (Q, element) and Dequeue (Q). The minimum number of Enqueue
operations on Q1 required to place the elements of Q1 in Q2 in reverse order (shown
as the Final State in the figure) without using any additional storage is___________.
63. Consider two files systems A and B, that use contiguous allocation and linked
allocation, respectively. A file of size 100 blocks is already stored in A and also in B.
Now, consider inserting a new block in the middle of the file (between 50th and 51st
block), whose data is already available in the memory. Assume that there are enough
free blocks at the end of the file and that the file control blocks are already in
memory. Let the number of disk accesses required to insert a block in the middle of
the file in A and B are nA and, nB respectively, then the value of nA + nB is_________.
64. Consider a demand paging system with four page frames (initially empty) and LRU
page replacement policy. For the following page reference string
7, 2,7,3, 2,5,3, 4,6,7,7,1,5,6,1
the page fault rate, defined as the ratio of number of page faults to the number of
memory accesses (rounded off to one decimal place) is_________.
Using this translation scheme, the computed value of S.val for root of the parse tree
for the expression 20#10%5#8%2%2 is _________.