A car covers its journey at the speed of 60 km/hr in 10 hours. If the same distance is to be covered in 4 hours, by how much the speed of the car will have to increase?
90 km/hr
150 km/hr
120 km/hr
125 km/hr
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

60.4 m

21.4 m

25.4 m

21.87 m

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

How many seconds will a 600 m long train take to cross a man walking with a speed of 6 km/hr in the direction of the moving train if the speed of the train is 66 km/hr?

25 sec

30 sec

36 sec

42 sec

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

Let N be the greatest number that will divide 1305, 4665 and 6905 and leave the remainder the same in each case. Then find the sum of the digits in N is:

4

5

6

3

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

A hall is 15m long and 12m broad. If the sum of the areas of the floor and the ceiling is equal to the sum of the areas of four walls, the volume of the wall is:

600m^2

1200m^2

400m^2

800m^2

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

Water flows a tank 150m100m through a rectangular pipe 1.0m x 1.2m at the rate of 20kmph. In what time will the water rise by 2 meters?

4/5 hrs

50hrs

75min

5/6m

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

What is the Antonym of the word 'Gullible'?

trusting

innocent

naive

discerning

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

Money and Position are like a passing cloud.

What is the meaning of the phrase 'passing cloud'?

heavenly

momentary

moving

shaking

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Maya ____ to the airport to say Bye to her Father who was ______ to Italy.
goes, Leave
go, going
went, leaving
going, leaves
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Read the passage and answer the question.

PASSAGE

Some legends are born out of fabled tales, unverifiable but ubiquitous and soaked in tradition. Some legends are as elusive as a dream, or vague as a vignette. The legend of Pradip Kumar Banerjee - the venerable PK to everyone - is, however, selfmade, built on the foundation of a dazzling career as player and coach, and subsequently passed on to generations of illustrious students who have served Indian football with distinction. 

 

Having shepherded East Bengal to 30 trophies and Mohun Bagan to 23, he stood like a colossus for about three decades, bringing the best out of his players and inspiring them to embellish Indian football with performances that are part of Indian football’s folklore.

 

Born to Prabhat and Bina Banerjee at Maynaguri in Jalpaiguri district in 1936, he was named Pradip as he was the first child to light up the family.

 

The journey that he began with a Santosh Trophy campaign for Bihar as a 15 year old and went on to illuminate Indian football for about five decades in various capacities, have reached its final destination. A man for all seasons and equipped with extraordinary management skills to transform adversity into antidotes PK will be remembered for his famous vocal tonic - these legendary pre-match pep talks he delivered to inspire players to defy odds. 

 

During the Federation Cup final in 1980, when a depleted and new - look East Bengal entered the Eden Gardens, Star - studded Mohun Bagan were expected to have a cake - walk. But PK pulled off a coup with newcomer Majid Bishkar,  campaigning him with 1979 Iranian Revolution leader Ayatollah Khomeri and triggering the birth of a legend around the Iranian himself. It was the stuff folklore is made of. The result was an odds-defying 1-1 draw.

 

Question:

How did PK Banerjee inspire other players?

 

By giving physical training
By giving pre-match pep-talks
By inducing hatred against rivals
By assessing the quality of players
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Suppose cursor points to a node in a linked list (using the node definition with member functions called data and link). What statement changes the cursor so that it points to the next node?
cursor == NULL
cursor->link( ) == NULL
cursor->data( ) == NULL
cursor = cursor->link()
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following pseudocode:

declare a stack of characters

while ( there are more characters in the word to read )

{

read a character

push the character on the stack

}

while ( the stack is not empty )

{

write the stack's top character to the screen

pop a character off the stack

}

What is written to the screen for the input "doodles"?

seldood
doodles
lesdood
selodod
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Here is an infix expression: 4+3*(63-12). Suppose that we are using the usual stack algorithm to convert the expression from infix to postfix notation. What is the maximum number of symbols that will appear on the stack AT ONE TIME during the conversion of this expression? ____
4
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
What is the meaning of the following declaration?

int(*ptr[5])();

ptr is pointer to function.
ptr is array of pointer to function
ptr is pointer to such function which return type is array.
ptr is pointer to array of function
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
What will be the output of the following program?

#include <stdio.h>

typedef struct { int k; int l; int a[2]; } T;

typedef struct { int i; T t; } S;

T x = {.l = 43, .k = 42, .a[1] = 19, .a[0] = 18 };

// x initialized to {42, 43, {18, 19} }

int main(void)

{

S l = { 1,

.t = x,

.t.l = 41,

.t.a[1] = 17

};

printf(" %d\n", l.t.k);

}

42
43
18
19
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
A Perfect Binary Tree of height h (where height is the number of nodes on path from root to leaf) has :
(2^h) – 1 nodes
(2^h) nodes
(2^(h-1)) – 1 nodes
(2^(h-1)) nodes
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
What will be the output of the following program?

#include<stdio.h>

struct Cricket

{

char team1[20];

char team2[20];

char ground[18];

int result;

}match[4] = {

{"IND","AUS","PUNE",1},

{"IND","PAK","NAGPUR",1},

{"IND","NZ","MUMBAI",0},

{"IND","SA","DELHI",1}

};

void main()

{

struct Cricket *ptr = match;

ptr+=2;

ptr--;

printf("\n%s Vs %s",ptr->team1,ptr->team2);

}

IND Vs AUS
IND Vs PAK
IND Vs NZ
IND Vs SA
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
What will be output if you will compile and execute the following c code? (2 marks)

#include<stdio.h>

int main(){

int a[2][4]={3,6,9,12,15,18,21,24};

printf("%d %d %d",*(a[1]+2),*(*(a+1)+2),2[1[a]]);

return 0;

}

15 18 21
21 21 21
24 24 24
Compiler error
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
A complete n-ary tree is a tree in which nodes have children or no children. Let I be the number of internal nodes and L be the number of leaves in a complete n-ary tree. If L=41, and I=10, what is the value of n?
3
4
5
6
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In a binary max heap containing n numbers, the smallest element can be found in_____ time.
O(n)
O(log2 n)
O(1)
O(log2 log2 n)
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following statement(s) is/are false

P: The running time of Radix sort is effectively independent of whether the input is already sorted

Q: The running time of RADIX-SORT on an array of n integers in the range 0,1,...,n^5 −1 when using base-10 representation will gives Θ(nlogn) complexity?

Only P
Only Q
Both P and Q
Neither P Nor Q
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Suppose we run Dijkstra’s algorithm for a single source shortest path problem on the following edge weighted directed graph starting at vertex S.

P: What is the resulting shortest path tree?

Q: What is the order in which vertices get removed from the priority queue?

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
0/1-Knapsack is a well known problem where it is desired to get the maximum total profit by placing n items(each item is having some weight and associated profit) into a knapsack of capacity W. The table given below shows the weights and associated profits for 5 items, where one unit of each item is available to you. It is also given that the knapsack capacity W is 8. If the given 0/1 knapsack problem is solved using Dynamic Programming, which one of the following will be maximum earned profit by placing the items into the knapsack of capacity 8.

Item

1

2

3

4

5

Weight

1

2

4

5

8

Associated Profit

3

5

9

11

18

19
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Given a set of cities and distance between every pair of cities, The problem is to find the shortest possible route that visits every city exactly once and returns to the starting point is _____?

10
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Let M =(Q,∑, 𝞒, 𝞭, q0,𝞫, F) be a standard Turing machine where the symbols have the usual meaning. Let we have a transition

𝛅 (q0, x) ⊢ (q1, y, R)

Select the correct option

Both x and y belongs to 𝞒.
Both x and y belongs to ∑ only.
x belongs to ∑ only and y belongs to 𝞒 only.
x belongs to 𝞒 only and y belongs to ∑ only.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following are decidable? [MSQ]
Whether the intersection of a CFL and a finite regular language is infinite.
Whether a given context-free language is regular.
Whether two deterministic push-down automata accept the same language.
Whether a given grammar is context-free.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Which one of the following languages over the alphabet {a,b} is described by the regular expression: (a+b)*b(a+b)*b(a+b)*?
The set of all strings containing the substring bb.
The set of all strings containing at most two b’s.
The set of all strings containing at least two b’s.
The set of all strings that begin and end with either a or b.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Regular
DCFL but not regular
CFL but not DCFL
CSL but not CFL
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following PDA over ∑={a,b} (Here, A is initial as well as Final state)

Select the correct option :

It will accept {L= a^n | n > 0}
It will accept {L= a^n | n >= 0} ∪ {L= b^n | n >=0}
It will accept {L= an | n > 0} ∪ { a^nbb | n >= 0 }
None of these
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Select the correct options. [MSQ]
The output generated by the loader is the input to the linker.
Linker intakes the object codes generated by the assembler and combines them to generate the executable module.
Loader loads the executable module to the main memory.
The loader has the responsibility of combining all the object modules to generate a single executable file of the source program.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Consider the following expression,

(p+q) *(p+q-r)

The DAG representation of the above expression contains _______ number of internal nodes.

3
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Consider the following SDT , which computes the value of a string of 0’s and 1’s interpreted as positive binary integer.

A-> A1 0 {P}

| A1 1 {Q}

| 1 { R}

Select the correct option with reference to P, Q and R.

P= { A.val = 2× A1 .val + 1} , Q= { A.val = 2× A1 .val} and R= {A.val =0}
P= { A.val = 2× A1 .val } , Q= { A.val = 2× A1 .val+1} and R= {A.val =0}
P= { A.val = 2× A1 .val + 1} , Q= { A.val = 2× A1 .val} and R= {A.val =1}
P= { A.val = 2× A1 .val } , Q= { A.val = 2× A1 .val+1} and R= {A.val =1}
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a machine having two registers R0 and R1 . Consider the following instructions.

Load Ri , Mj , // Load the value in register Ri from the memory location “j” i.e., Ri = Mj

Op Ri , Ri , Rj // Ri = Ri operator Rj

Op Ri , Ri , Mj // Ri = Ri operator Mj

Load Ri , Rj , // Load the value in register Ri from the register Rj i.e., Ri = Rj

Store Mi , Rj , // store the value in register Ri to the memory Mj i.e., Mj = Ri

In these instructions, Ri is either R0 OR R1 , and Mj is a memory location. The operator op corresponds to an arithmetic binary operator.

Assume each aforementioned instruction incurs a cost of one unit. The minimum units of cost to evaluate the expression (a-b)+c*(d/e) will be _______. Assume all variables are initially present in memory.

7
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider the following code segment

The number of nodes and edges in the control flow graph of the aforementioned code segment will be ______ and _______ respectively.

8 and 10
12 and 15
6 and 8
None
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Identify type of lock acquire/release rules in growing phase (first phase) in two-phase locking protocol.

can acquire a lock-S on item

can acquire a lock-X on item

can convert a lock-S to a lock-X

can release a lock-S

can release a lock-X

can convert a lock-X to a lock-S

can acquire a lock-S

can release a lock-X

can convert a lock-X to a lock-S

can release a lock-S on item.

can acquire a lock-X on item

can convert a lock-S to a lock-X

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
For a table T, the characteristics of three of its columns are given below.

Column A has unique values

Column B has a wide range of values

Column C contains many nulls and the non-null values are not searched much

Which of these column/s is/are good for indexing? [MSQ]

A
C
There is no potential choice.
B
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Which of the following functional dependencies hold for relations R(A, B, C) and S(B, D, E):

B -> A

A -> C

The relation R contains 300 tuples and the relation S contains 200 tuples. What is the maximum number of tuples possible in the natural join of R and S (R natural join S)

200
300
500
10000
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a relation with schema R(A,B,C,D) and FDs {AB -> C, C -> D, D -> A}. What is/are the nontrivial FDs that can be inferred from the given FDs?
C -> ACD, D -> AD
AB -> ABCD, AC -> ACD
BC -> ABCD, BD -> ABCD, BCD -> ABCD
CD -> ACD, ABC -> ABCD, ABD -> ABCD
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following page reference string: 7,2,3,1,2,5,3,4,6,7,7,1,0,5, 4,6,2,3,0,1. Assume demand paging with 3 frames, how many page faults would occur for the FIFO page replacement algorithm?
14
18
17
13
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider a disk queue with requests for cylinders 82,170,43,140,24,16,190. The LOOK scheduling algorithm is used. The head is initially at cylinder number 50. The cylinders are numbered from 0 to 199. The total head movements or the seek operations (in number of cylinders) incurred while servicing these requests is _______.
314
326
318
None
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider a paging system that uses 1-level page table residing in main memory and a TLB for address translation. Each main memory access takes 100 ns and TLB lookup takes 20 ns. The page fault service takes 5000 ns. Assume that the TLB hit ratio is 95%, page fault rate is 10%. TLB update time is negligible. The average memory access time in ns is :
149-150 ns
140-141 ns
154-155 ns
144-145 ns
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following pseudo‐code for a process Pi, where “shared boolean flag[2]” is a variable declared in shared memory, initialized as: flag[0] = flag[1] = FALSE;

// i=0 for P0, i=1 for P1

P (int i) {

while (TRUE) {

flag[i] = TRUE;

while (flag[(i+1) % 2) == TRUE);

< Critical Section >

flag[i] = FALSE;

< Remainder Section >

}

}

Which of the following is FALSE?

Mutual exclusion is achieved.
Progress is achieved.
The above code uses the spin-lock mechanism.
All of them.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

The page size in a system is increased while keeping everything else (including the total size of main memory) the same. Which of the following is/are TRUE as a result of this increase in page size [MSQ]

Size of the page table of a process decreases.

Internal fragmentation of main memory increases

TLB hit rate increases

Size of the page table of a process increases.

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider the address 141.14.196.46 and subnet mask 255.255.192.0. Find the subnet id?
141.14.1.46
141.14.192.0
255.255.192.0
None
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
The transport layer protocols used for TFTP, SNMP, SMTP, RIP?
TCP, TCP, TCP, UDP
UDP, TCP, TCP, UDP
UDP, UDP, TCP, UDP
UDP, UDP, UDP, UDP
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the flow specification having the maximum packet size 800 bytes, token bucket rate of 8 ×106 bytes/sec. Token bucket size is 2 MB and the maximum transmission rate 16 million bytes/sec.

What is the time for which burst be sent at maximum speed?

0.4 sec
0.25 sec
0.2 sec
0.35 sec
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Assume there are 50 nodes are connected to a 500-meter length of cable. Each node can transmit 25 frames per second and average length of frame is 2000 bits. transmission rate at each node is 10 Mbps. The efficiency of this protocol is ________ (in %).
25
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
The number of distinct possible square matrices of order 2, with each entry x (or) y (or) z is _______
81
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
If A is an orthogonal matrix of order ‘n’ then determinant of ‘A’ is _______
1
0
-1
±1
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
LEt a relation R={(b,c),(c,d)} then the number of ordered pairs that must be added to R to make it an equivalence relation is ____
7
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
In the multiplicative group of {1, – 1, i , – i}, the inverse of the element -i is __
i
1
-1
-i
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following are equal to (2x+3y)^2 [MSQ]
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Randomly 10 distinct letters are given to a student. If words of length 5 need to be formed, then the number of words which have at least one letter repeated is ___
69760
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Let a function f(x)= sinx+cosx, choose the correct statements [MSQ]
f is increasing on [0, π/4]
f is increasing on (5π/4, 2π)
f is decreasing on (π/4, 5π/4)
f is increasing everywhere
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Which of the following are tautologies [MSQ]
xconditional_0.gif(xor_0.gify)
p(pq)
~(pq)(~r)
(pq) [ (~p)(~q) ]
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Let Y is a 8-bit signed integer which is represented by using 2’s complement representation. If Y= 0x8A, then 16Y= ____.
0xA56
0xA58
0x8A0
0x856
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

  1. Consider the following circuit.



Which of the following minimal expressions represent the above circuit?

A(B+C)
A’(B+C)
B+C
None
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

  1. Consider the following synchronous counter with initial state Q1=Q0=0.

Which of the following is the state of the counter after 4 clock?

Q1=Q0=1
Q1=Q0=0
Q1=1, Q0=0
Q1=0, Q0=1
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

  1. Consider the following 16-bit floating point format with bias 16.

S

M

E

1 bit

10 bits

5 bits

The bits of implicitly normalized number A are laid out as follows

0

111100 0000

11111

The value of the number A in decimal is _____.

63488
65536
65535
None
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a k x 2^k decoder that is used to uniquely address a byte addressable

1 GB RAM, then the minimum value of k is ____

30
20
1024
log2 20
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following statements:

S1: A direct mapped cache has less number of conflict misses than a set associative cache of the same size

S2: In a fully associative cache there will not be any block replacement if there is at least one empty block in the cache

Choose the correct option:

Only S1 is true
Only S2 is true
Both S1 and S2 are true
Both S1 and S2 are false
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider a disk with each sector of 512 bytes, 1000 tracks per surface, 50 sectors per track, five-double sided platters and average seek time of 5 ms.

If T is the capacity of a track in bytes and S is the capacity of each surface in bytes, then (T,S)=______

(25K, 25000K)
(50K, 25000K)
(25K, 50000K)
(50K, 50000K)
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider an L1 cache, L2 cache, and main memory. The hit rates and hit times for each are:

80% hit rate, 10 ns hit time for L1.

90% hit rate, 30 ns hit time for L2.

100% hit rate, 200 ns hit time for main memory

If there are a total of 500 memory accesses, how many of these accesses are serviced from L1, L2 and main memory respectively?

(300, 150, 50)
(400, 80, 20)
(400, 90, 10)
(300, 180, 20)
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider 512 KB direct mapped cache with 64-byte block size. The hit latency of the cache is 3ns. If a k bit comparator has a latency of k/5 ns, what is the size of the physical address in bits of this memory system if it is a byte addressable memory?
32
30
28
34
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following program, where R0, R1, R2 are the general purpose CPU registers.

Instruction

Meaning

  1. LOAD R0, 2000H R0 <- M[2000]

2. LOAD R1, @(R2) R1 <- M[M[R2]]

3. ADD R1, R0, R1 R1 <- R0 + R1

4. INC R2 R2 <- R2+1

5. STORE R1, (R2) M[R2 ]<- R1

6. HALT Stop

If the content of memory location 2000 is 10 and the initial value in R2 is 1000. The content of memory locations from 1000 to 1010 have the value 5. What are the final values in registers R0, R1 and R2 respectively at the end of the execution of the given program?

(10, 15, 1001)
(15, 10, 1000)
(10, 10, 1000)
(15, 5, 1001)
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66