Choose the option with words that are not synonyms.
🎯 Practice smarter, not harder
Just sign in to unlock everything. Free for all students.
Choose the option with words that are not synonyms.
Saturn is ___________ to be seen on a clear night with the naked eye.
There are five buildings called V, W, X, Y and Z in a row (not necessarily in that order). V is to the West of W. Z is to the East of X and the West of V. W is to the West of Y. Which is the building in the middle?
A test has twenty questions worth 100 marks in total. There are two types of questions. Multiple choice questions are worth 3 marks each and essay questions are worth 11 marks each. How many multiple choice questions does the exam have?
There are 3 red socks, 4 green socks and 3 blue socks.You choose 2 socks. The probability that they are of the same colour is
"We lived in a culture that denied any merit to literary works, considering them important only when they were handmaidens to something seemingly more urgent - namely ideology. This was a country where all gestures, even the most private, were interpreted in political terms." The author's belief that ideology is not as important as literature is revealed by the word:
There are three boxes. One contains apples, another contains oranges and the last one contains both apples and oranges. All three are known to be incorrectly labeled. If you are permitted to open just one box and then pull out and inspect only one fruit, which box would you open to determine the contents of all three boxes?
is a 30 digit number starting with the digit 4 followed by the digit 7. Then the number will have
The number of roots of in the range [-5,5] is
An air pressure contour line joins locations in a region having the same atmospheric pressure. The following is an air pressure contour plot of a geographical region. Contour lines are shown at 0.05 bar intervals in this plot. If the possibility of a thunderstorm is given by how fast air pressure rises or drops over a region, which of the following regions is most likely to have a thunderstorm?
The representation of the value of a 16-bit unsigned integer X in hexadecimal number system is BCA9. The representation of the value of X in octal number system is
Match the following:

Match the algorithms with their time complexities:

Let be any two context free languages and R be any regular language. Then which of the following is/are CORRECT ? I. is context - free II. is context - free III. is context - free IV. is context - free
Match the following according to input (from the left column) to the complier phase (in the right column) that processes it.

Which of the following statements about parser is/are CORRECT? I. Canonical LR is more powerful than SLR. II. SLR is more powerful than LALR III. SLR is more powerful than Canonical LR.
Which of the following is/are shared by all the threads in a process ? I. Program counter II. Stack III. Address space IV. Registers
In a file allocation system, which of the following allocation schemes(s) can be used if no external fragmentation is allowed? I. Contiguous II. Linked III. Indexed
Consider the following statements about the routing protocols, Routing Information Protocol (RIP) and Open Shortest Path First (OSPF) in an IPv4 network. I. RIP uses distance vector routing II. RIP packets are sent using UDP III. OSPF packets are sent using TCP IV. OSPF operation is based on link-state routing Which of the statements above are CORRECT?
If and , then the constants R and S are, respectively
Let p, q, r denote the statements "It is raining ," It is cold", and " It is pleasant," respectively. Then the statement "It is not raining and it is pleasant, and it is not pleasant only if it is raining and it is cold" is represented by
Given the following binary number in 32-bit (single precision) IEEE-754 format: 00111110011011010000000000000000 The decimal value closest to this floating- point number is
A circular queue has been implemented using a single linked list where each node consists of a value and a single pointer pointing to the next node. We maintain exactly two external pointers FRONT and REAR pointing to the front node and the rear node of the queue, respectively. Which of the following statements is/are CORRECT for such a circular queue, so that insertion and deletion operation can be performed in O (1) time ? I. Next pointer of front node points to the rear node. II. Next pointer of rear node points to the front node.
Consider the following function implemented in C:
void printxy (int x, int y) {
int *ptr ;
x = 0;
ptr = &x;
y = * ptr;
* ptr = l;
print f ("%d, %d," x, y);
}
The output of invoking printxy (1,1) is
The Breadth First Search (BFS) algorithm has been implemented using the queue data structure. Which one of the following is a possible order of visiting the nodes in the graph below?

Identify the language generated by the following grammar, where S is start variable. S XY X aX|a Y aYb|
An ER model of a database consists of entity types A and B. These are connected by a relationship R which does not have its own attribute. Under which one of the following conditions, can the relational table for R be merged with that of A?
Consider socket API on a Linux machine that supports connected UDP sockets. A connected UDP socket is a UDP socket on which connect function has already been called. Which of the following statements is/are CORRECT ? I. A connected UDP socket can be used to communicate with multiple peers simultaneously. II. A process can successfully call connect function again for an already connected UDP socket.
Consider the following tables T1 and T2. In table T1, P is the primary key and Q is the foreign key referencing R in table T2 with ondelete cascade and on-update cascade. In table T2, R is the primary key and S is the foreign key referencing P in table T1 on-delete set NULL and on-update cascade. In order to delete record (3,8) from table T1, the number of additional records that need to be deleted from table T1 is _____.

The maximum number of IPv4 router addresses that can be listed in the record route (RR) option field of an IPv4 header is _________.
Consider the set X={a, b,c,d,e} under the partial ordering R={(a,a),(a,b),(a,c),(a,d),(a,e),(b,b),(b,c),(b,e),(c,c),(c,e),(d,d),(d,e),(e,e)}. The Hasse diagram of the partial order (X, R) is shown below. The minimum number of ordered pairs that need to be added to R to make (X, R) a lattice is _____.

Let
and
be two matrices. Then the rank of P +Q is _____________.
G is undirected graph with n vertices and 25 edges such that each vertex of G has degree at least 3. Then the maximum possible value of n is ___________.
Consider a quadratic equation with coefficients in a base b. The solutions of this equation in the same base b are x = 5 and x = 6. Then b = ___________.
The minimum possible number of states of a deterministic automaton that accepts the regular language is ____
P and Q are considering to apply for a job. The probability that P applies for the job is 1/4. The probability that P applies for the job given that Q applies for the job is 1/2 , and the probability that Q applies for the job given that P applies for the job 1/3. Then the probability that P does not apply for the job given that Q does not apply for the job is
If w, x, y, z are Boolean variables, then which one of the following is INCORRECT ?
Given f(w,x,y,z) = (0,1,2,3,7,8,10) + (5,6,11,15), where d represents the don't care condition in Karnaugh maps. Which of the following is a minimum product-of-sums (POS) form of f(w,x,y,z) ?
In a two-level cache system, the access times of and caches are 1 and 8 clock cycles, respectively. The miss penalty from L2 cache to main memory is 18 clock cycles . The miss rate of cache is twice that of . The average memory access time (AMAT) of this cache system is 2 cycles. This miss rates of and respectively are :
Consider the recurrence function
Then T(n) in terms of notation is
For any discrete random variable X, with probability mass function and , define the polynomial function . For a certain discrete random variable Y, there exists a scalar [0,1] such that . The expectation of Y is
Consider the following expression grammar G: E E-T|T T T+F|F F (E)|id Which of the following grammars is not left recursive, but is equivalent to G?
A system shares 9 tape drives. The current allocation and maximum requirement of tape drives for three processes are shown below: Which of the following best describes current state of the system ?

Consider a binary code that consists of only four valid code words as given below: 00000,01011,10101,11110 Let the minimum Hamming distance of the code be p and the maximum number of erroneous bits that can be corrected by the code be q. Then the values of p and q are
Consider two hosts X and Y, connected by a single direct link of rate bits/sec . The distance between the two hosts is 10,000 km and the propagation speed along the link is 2x m/sec . Host X sends a file of 50,000 bytes as one large message to host Y continuously. Let the transmission and propagation delays be p milliseconds and q milliseconds, respectively . Then the values of p and q are
The pre-order transversal of a binary search tree is given by 12, 8, 6, 2, 7, 9, 10, 16, 15, 19, 17, 20. Then the post-order traversal of this tree is:
Consider the C program fragment below which is meant to divide x by y using repeated subtractions. The variables x, y, q and r are all unsigned int. while (r >= y) { r = r - y; q = q +1; } Which of the following conditions on the variables x, y, q and r before the execution of the fragment will ensure that the loop terminates in a state satisfying the condition x==(y*q+r)?
Consider the following C function
int fun (int n) {
int i, j;
for (i = 1; i < = n; i++) {
for (j = 1 ; j < n ; j+=i) {
printf ("%d %d , i, j ) ;
}
}
}
Asymptotic Notation of fun in terms of notation is
Let denote that transition function and denote the extended transition function of the - NFA whose transition table is given below: Then is ____

Consider the following languages is a prime number} Which of the following are CORRECT ? I. is context-free but not regular. II. is not context-free. III. is not context-free but recursive. IV. is deterministic context-free.
Let L(R) be the language represented by regular expression R. Let L(G) be the language generated by a context free grammar G. Let L (M) be the language accepted by a Turning machine M. Which of the following decision problems are undecidable ? I. Given a regular expression R and a string w, is w L(R)? II. Given a context-free grammar G, L(G)= ? III. Given a context-free grammar G, is L(G)= * for some alphabet ? IV. Given a Turning machine M and a string w, is w L(M)?
The next state table of a 2-bit saturating up-counter is given below.
The counter is built as a synchronous sequential circuit using T flip-flops. The expression for are
Consider the following snippet of a C program. Assume that swap (&x, &y) exchanges the contents of x and y.
int main ( ) {
int array[]= {
3,5,1,4,6,2
}
;
int done =0 ;
int i ;
while (done = = 0) {
done = 1;
for (i = 0; i <=4; i ++) {
if (array [i] < array [i +1]) {
swap (& array [i], &array [i+1]);
done = 0;
}
}
for (i = 5 ; i > =1; i --) {
if (array [i] > array [ i-1]) {
swap ( & array [i] , &array [i-1]);
done = 0;
}
}
}
printf ( " %d " , array [3] );
}
The output of the program is ____________.
Two transactions are given as: where denotes a read operation by transaction on a variable V and denotes a write operations by transaction on a variable V. The total number of conflict serializable schedules that can be formed by is _____________.
The read access times and the hit ratios for different caches in a memory hierarchy are as given below. The read access time of main memory is 90 nanoseconds. Assume that the caches use the referred word-first read policy and the write back policy. Assume that all the caches are direct mapped caches. Assume that the dirty bit is always 0 for all the blocks in the caches. In execution of a program, 60% of memory reads are for instruction fetch and 40% are for memory operand fetch. The average read access time in nanoseconds (up to 2 decimal places) is______.

Consider the following database table named top_scorer. Consider the following SQL query: The number of tuples returned by the above SQL query is ___________.


If the ordinary generating function of a sequence then is equal to ______.
If a random variable X has a Poisson distribution with mean 5, then the expectation equals ______________.
In a tree, if the search -key value is 8 bytes long, the block size is 512 bytes and the block pointer size is 2 bytes, then maximum order of the tree is _______________.
A message is made up entirely of characters from the set X= {P,Q,R,S,T}. The table of probabilities for each of the characters is shown below: If a message of 100 characters over X is encoded using Huffman coding, then the expected length of the encoded message in bits is_____

Consider the set of processes with arrival time (in milliseconds). CPU burst time (in milliseconds), and priority (0 is the highest priority) shown below. None of the processes have I/O burst time. The average waiting time (in milliseconds) of all the processes using preemptive priority scheduling algorithm is __________

If the characteristics polynomial of 3x3 matrix M over R ( the set of real numbers) is , and one eigenvalue of M is 2, then the largest among the absolute values of the eigenvalues of M is ________.
Consider a machine with a byte addressable main memory of bytes divided into blocks of size 32 bytes. Assume that a direct mapped cache having 512 cache lines is used with this machine. The size of the tag field in bits is ______.
Consider the following C program. #include < stdio.h >
int main ( ) {
int m = 10;
int n, n1;
n = ++m;
n1 = m++;
n--;
--n1;
n-=n1;
printf ("%d", n) ;
return 0;
}
The output of the program is ______________.
Consider the following C Program. #include < stdio.h > #include < string.h > #
int main ( ) {
char* c = "GATECSIT2017";
char* p = c;
printf("%d", (int) strlen (c+2[p]-6[p]-1));
return 0;
}
The output of the program is _______________.