Question
Four of the following five are alike in a certain way
and hence form the group. Which of the following ones does not belong to the group? Study the following information carefully and answer the below questions. Eight people D, T, O, L, J, A, C, and G are seated around the circular table. All the persons are facing towards the table but not necessarily in the same order. D sits three places away from O who sits second to the right of C. A sits second to the left of T. Neither O nor D is an immediate neighbour of T. The number of persons who sit between L and O is one less than the number of persons who sit between G and J when counted from the right of G and L. L doesn’t sit next to O.Solution
D sits three places away from O who sits second to the right of C
A sits second to the left of T. Neither O nor D is an immediate neighbour of T. so case-1 is eliminated
The number of persons who sit between L and O is one less than the number of persons who sit between G and J when counted from the right of G and L. L doesn’t sit next to O. 
What is the primary output of the parsing phase in a compiler?
In LR parsing, what does the term "shift" mean?
Which of the following is an example of a "local optimization"?
Multithreading an interactive program will increase responsiveness to the user by ___________
Which code optimization technique replaces occurrences of a variable with its constant value if the variable has been assigned a constant value that is ...
Which storage class in C indicates that a variable's lifetime is throughout the program execution and its scope is local to the block it is defined in, ...
Which of the following techniques is used to ensure that a database design eliminates redundant data?
In a Syntax-Directed Definition (SDD), attributes are associated with:
Which of the following is NOT a common form of 3-address code?
What will be the output of the following C code?
#include
int main() {
int i;
for (i = 0; i < 5; i++) {
<...