The fourth proportional to 4, 14, 24 is
84
34
54
64
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

The HCF of two numbers is 31 and the other two factors of their LCM are 13 and 16. The larger of the two numbers is

403

322

496

546

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

6 bells commence tolling together and toll at intervals of 2, 3, 4, 5, 6 and 8 seconds respectively. In 44 minutes how many times do they toll together?

12 times

23 times

22 times

24 times

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

A bag contains three different types of fruits X, Y, Z are in ratio 8:5:6. If the number of fruits in the bag is increased by 15%, 20% and 20% respectively. What is the new ratio of fruits that bag contains?

7:4:3

46:30:36

3:4:5

46:6:36

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

X can fabricate a divider in 15 days while Y alone can assemble it in 18 days, if they construct it together and get an installment of Rs.3300, then what is the difference between the share of X and Y?

400

350

300

600

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The average salary of all employees in an organization is Rs.7700. The average salary of 9 Technicians is Rs.11000 and the average salary of rest is Rs.5000. How many employees are there in the organization?
25
20
40
28
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Cactus: Succulent :: wood :: ? [MSQ]
Moss
dry
Teak
Hard
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00

A person who protects is known as ______?

offender

bystander

defender

mender

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
The child sat ______ her lap.
towards
upon
beside
in
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Read the passage and answer the question

PASSAGE

Asiant - poet who dedicated herself to the worship of Lord Krishna …. Meerabai’s life has been etched in the pages of history for her ardent devotion. To celebrate her life and times, a musical called Meera - The musical that has a tracker of her lesser - known poems, premiered online. Around 180 artists took part in the musical, which has been produced by Art of Living. It is a fundraiser for the free education project of the organization.

A life so vibrant and mystic, there have been various versions to her story. Bharathy Harish, coordinator of Madhurya Creation who has also done the screenplay for the musical, says they had to research the life of Meerabai in depth. “We spoke to a traditional folk storyteller in Mewar, through whom we even felt the deep connection that people had for Meerabai.

Several known names, including B Prasana, Sachin Limaye, Chitra Roy, Srinivas Shalini and Gautam Dabir, have arranged music for the performance. Renowned artists such as KS Chitra and Gayatri have given vocals for them. Considering Meerabai a true feminist, the team tried to show the values and strength that Meerabai represented. For instance, Meerabai stopped the practice of animal sacrifice and challenged the custom of ‘Sati’. Despite being a young princess who grew up in a male - dominated social setting,she showed how she could resolve matters’. The team hopes the musical as a learning for viewers. More than 300 people worked for six months on the production.

Another part of the musical was making the show visually appealing. Which is why, a lot of emphasis was laid on costumes which were handled by Madhurya Handloom, which works on revival of traditional fabrics.

Question:

Which practice did Meerabai stop in a male - dominated society that she lived in ?

Dance practice
Folk - storytelling
Sati
Animal sacrifice
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
What will be unique binary tree whose preorder & inorder sequences are:

4 2 1 3 5 34 23 6 44

1 2 3 4 5 6 23 34 44

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Hashing reduces the time required to
Insert an element in a data structure
Delete an element from a data structure
Search/Access an element into a data structure
None
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In order to find Minimum Spanning tree from undirected connected graph, we should use Prim’s algorithm if graph is dense otherwise Kruskal’s algorithm.____
True
False
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
What is the output of following program?

#include <stdio.h>

int counter = 0;

int calc (int a, int b) {

int c;

counter++;

if (b==3) return (a*a*a) ;

else {

c = calc (a, b/3) ;

return (c*c*c) ;

}

}

int main () {

calc (4, 81);

printf ("%d", counter) ;

}

4
3
12
9
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following statements:

  1. let T be the DFS tree resulting from DFS traversal on a connected directed graph the root of the tree is an articulation point, iff it has at least two children.
  2. When BFS is carried out on a directed graph G, the edges of G will be classified as tree edge, back edge, or cross edge and not forward edge as in the case of DFS
Both I and II are true
Both I and II are false
Only I is true and II is false
Both I and II are sometimes true
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The following C function takes a single-linked list of integers as a parameter and rearranges the elements of the list. The function is called with the list containing the integers 8, 7, 6, 5, 4, 3, 2, 1 in the given order. What will be the contents of the list after function completes execution?

struct node

{

int value;

struct node *next;

};

void rearrange(struct node *list)

{

struct node *p, * q;

int temp;

if ((!list) || !list->next)

return;

p = list;

q = list->next;

while(q)

{

temp = p->value;

p->value = q->value;

q->value = temp;

p = q->next;

q = p?p->next:0;

}

}

1, 2, 3, 4, 5, 6, 7, 8
7, 8, 5, 6, 3, 4, 1, 2
8, 7, 6, 5, 4, 3, 2, 1
7, 8, 4, 5, 6, 1, 2, 3
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Which of the following statement is correct:
A directed graph G is acyclic (DAG) if and only if a depth-first search of G yields no back edges.
A directed graph G is acyclic (DAG) if and only if a depth-first search of G yields no cross edges.
A directed graph G is acyclic (DAG) if and only if a depth-first search of G yields no tree edges.
A directed graph G is acyclic (DAG) if and only if a depth-first search of G yields no forward edges.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider Adjacency matrix representation of the undirected graph as follows:

If the starting vertex for the above graph is vertex 5 then choose the correct option among the following:

There exist a direct edge between vertex 4 and vertex 6 in BFS traversal
There exist a direct edge between vertex 5 and vertex 6 in BFS traversal
There exist a direct edge between vertex 5 and vertex 1 in BFS traversal
None
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

Given the figure below, which one of the following options gives a negative weight cycle? [MSQ]

B-A, A-F, F-D, A-D, A-C, C-B

B-A, A-C, C-B

B-A, A-F, F-D, D-C, C-B

B-A, A-D, D-C, C-B

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
What is the time complexity of function Bob()

int Bob(n,x) /* Take x>1 */

{

int i=0;

while(n>=1)

{

i=i+1;

n=n/x;

}

return(i);

}

O(logxn)
O(logxn)^2
O(log logxn)
O(n)
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following algorithms is the best algorithm design technique used to find all the pairs of shortest distances in a graph?
Divide and Conquer
Greedy Algorithm
Dynamic Programing
Brute force technique
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Let G=(V,E) be the directed, weighted graph shown below.

What is the cost of the shortest paths from ‘a’ to all other remaining vertices in the above graph? [ MSQ]

(a-b,50), (a-c,45)(a-d,10)(a-e,10)(a-e-f,28)
(a-e-b,45)(a-d-e-b-c,45)(a-d,10)(a-e,25)(a-f,∞)
(a-d-e-b,45)(a-c,45)(a-d,10)(a-e,25)(a,f,∞)
(a-e-b,45)(a-c,45)(a-d,10)(a-d-e,25)(a,f,∞)
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider an empty hash table of size = 6. The elements 16, 25, 28, 37 are to be inserted. Which of the hash functions results in minimum collision, if linear probing technique is used? [ MSQ]
(x+1) mod 6
2x mod 6
x mod 6
(2x+1) mod 6
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
The numbers 32,56,87,23,65,26,93 are to be inserted into a hash table of size 7. The hash table implementation uses function as (mod 7) and linear probing to resolve collision. After inserting the given numbers into a hash table, if you apply bubble sort on the final content of the table, then after one pass of the bubble sort, how many elements have changed their position_____?
6
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider a language L which is context free but not regular. Select the correct option about L. [MSQ]
The complement of L cannot be regular.
The complement of L must be CSL.
The complement of L may or may not be CFL.
The complement of L cannot be CFL.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Consider the following context free grammar G and select the language L(G) generated by grammar G from the options.

G: S→AB & A→aAb |ab & B→bBc |ab

L(G)={a^n b^k c^m | k=n+m & n,m >0}
L(G)={a^n b^k c^m | n=k+m & n,m >=0}
L(G)={a^n b^k c^m | m=n+k & n,m >0}
L(G)={a^n b^k c^m | m=n+k & n,m >=0}
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following language L such that every string in L begins with “a” and ends with “bb”. The number of states in min DFA accepting L are ___
5
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider the following Turing Machine “M” (q0 is initial state and qf is final state or halt accept state). Select the correct option with reference to Turing machine “M”. [MSQ]

The language accepted by Turing Machine is regular.
The Turing machine can go to an infinite loop for some input string.
The language accepted by Turing Machine is finite.
The given Turing Machine accepts an empty language.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider the following statements and select the correct option. [MSQ]
A Turing machine accepting a recursively enumerable language L may go to infinite loop for any string “w” belonging to language L
A halting Turing machine accepting a recursive language will never go into an infinite loop.
A Turing machine accepting a universal language must halt if run with empty string as input.
A Turing machine accepting a finite language may or may not halt for some string w which is not present in language.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider the grammar G whose productions are:

S-> abS | aSb | ϵ

Select the correct option. [MSQ]

The grammar is ambiguous
The grammar will always generate an even length string.
The string “aabb” has one parse tree using LMD.
There is a string of length two, which has two parse trees using LMD.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Consider the following statements with reference to LR(0) and LALR(1) for a CFG. [MSQ]
The goto part of both tables may be different.
The shift entries are identical in both the tables.
LR(0) and LALR(1) always have the same number of states for a CFG.
Every LALR(1) grammar must be LR(0).
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
For parsing arithmetic expressions, involving (, +, -, ), the precedence relation between “-” and “-” will be “<” if
Here “-” is unary minus
Here “-” is left associative
Here “-” is right associative
Cannot be determined the associativity
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider an augmented grammar

E’→E

E→E+T | T

T→T*F | F

F→(E) | id

If I is the set of one item {[ E’→.E]}, then number of items (including I) in CLOSURE(I) are _________

7
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Select the correct option [MSQ]
A parse tree showing the values of its attributes is called an annotated parse tree.
The process of computing the attribute values at the nodes is called annotating the parse tree.
The drawback for quadruple representation of 3-address code is it requires more space compared to triple notation.
The drawback of triples is that it requires two memory accesses.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider a relation R(A,B,C,D,E) and the following functional dependencies:

AB → C

C → D

BD → E

What does the highest normal the relation R satisfies?

1NF
2NF
3NF
BCNF
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

Consider the relation schema.

weather ( city, temperature, humidity, condition).

Find the names of cities whose temperature is not in the range of 71 to 89.

SELECT city FROM weather WHERE temperature NOT IN (71 to 89)

SELECT city FROM weather WHERE temperature NOT IN (71 and 89)

SELECT city FROM weather WHERE temperature NOT BETWEEN (71 to 89)

SELECT city FROM weather WHERE temperature NOT BETWEEN (71 and 89)

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following log sequence:

< T0, start >

< T0, A, 1000, 950 >

< T0, B, 2000, 2050 >

< T0, commit >

< T1, start >

< T1, C, 700, 600 >

What will be the recovery action by immediate modification recovery?

undo T0, redo T1
redo T0, redo T1
redo T0, undo T1
undo T0, undo T1
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider following schedules where S1 and S2 consist of transactions (T1, T2 and T3); and S3 and S4 consist of transactions (t1 and t2).

S1: W1(X) W2(X) R3(X)

S2: W1(X) R3(X) W2(X)

S3: R1(X) W2(X) W1(X)

S4: R1(X) W1(X) W2(X)

Identify the correct statement(s) [MSQ]

schedule S1 and S2 are view equivalent
schedule S1 and S2 are not view equivalent
schedule S3 and S4 are view equivalent
schedule S3 and S4 are not view equivalent
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following five processes, with their arrival times and execution times given in milliseconds.

Assuming no context switch overhead the average waiting time using Shortest Job First (SJF) scheduling is (in ms):

3.1
3.0
3.4
3.6
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following code given below, and assume that all fork system calls are successful.

int main () {

int pid,n,i;

for(i=0;i<n;i++){

pid = fork();

printf ("%d \n", pid);

}

return 0;

}

How many non-zero positive integers will be printed by the above code?

2^n
2^n ‐ 1
2^(n+1) ‐ 1
2^(n+1) ‐ 2
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following is TRUE ?
The SJF algorithm minimizes the average waiting time of a set of running processes, assuming that all processes arrive at time 0.
The Swapped-Out states in a process state transition diagram are represented by a queue in main memory .
We need special support from the hardware to provide mutual exclusion in Peterson’s solution.
None of these.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a system, where processes need to acquire and hold multiple locks at a time. All processes are mandated to use the function acquire locks, instead of acquiring locks independently.

Int acquire_locks(struct lock *la[], int n){

for(int i=0;i<n;i++){

while(!lock(la[i])); //If lock not available, wait

}

return 1; // The function returns once all n locks have been

successfully acquired by the process

}

This function takes as arguments a variable sized array of pointers to locks (i.e., addresses of the lock structure), and the number of lock pointers in the array, as shown in the function definition above. The function returns once all locks have been successfully acquired by the process. The i-th lock can be locked by calling lock(la[i]).

Which of the following would prevent a deadlock.

The above code is already free from deadlock.
Sort the locks by address struct lock *, and then acquire in sorted order.
SInce, acquire_locks function is non atomic, it is not possible to prevent a deadlock.
None of these.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a system with 8-bit virtual and physical addresses, and 16 byte pages. A process in this system has 4 logical pages, which are mapped to 3 physical pages as follows:

Which of the following is/are TRUE ?

CPU access to virtual address 7 leads to a TLB hit.
CPU access to virtual address 20 leads to a TLB hit.
CPU access to virtual address 70 leads to a trap to OS.
CPU access to virtual address 80 leads to a page fault.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Which of the following scenarios specifies the correct reply for connection requests in TCP environment? Assume that the server accepts the request and wants to communicate. Answer in terms of the order of (SYN, ACK) pairs.
(0, 0)
(0, 1)
(1, 1)
(1, 0)
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
What could be the network mask if the direct broadcast address of a network is 168.17.07.255?
255.255.248.0
255.255.252.0
255.255.254.0
All the above
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Identify the protocols X, Y and Z respectively used for mail transfer. Assume that mail was sent by Alice and received by Bob.

POP3, SMTP, IMAP4
IMAP4, SMTP, SMTP
SMTP, POP3, SMTP
SMTP, SMTP, IMAP4
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Suppose Ram lives in Bangalore, connected to the internet via a 100 Mbps connection retrieves a 250 KB webpage from a server in Delhi, where the page contains 3 images of 500 KB each. Assume one way propagation delay is 75 ms and Ram’s access link is the bandwidth bottleneck for this connection. If T1 is the time taken for the page with images to appear on Ram’s screen using nonpersistent HTTP and T2 is time using persistent connection, then T = T1 – T2 will be ________ msec. (Assuming queuing delay is zero)
750
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
The probability of completing an assignment by Ekta, Shashank, Aman are ½, ⅕, ⅙.

What is the probability that atleast one of them complete the assignment is

1/30
1/60
2/3
None
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

Choose the minor of the matrix

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

The rank of matrix

is

3
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Which of the following expressions are contradictions
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

Choose the correct statement

For the function f(x)=x^3-x [MSQ]

f(x) has local minimum at 2 points

f(x) has 2 critical points

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Choose the correct options [MSQ]
All trees are bipartite.
A graph is bipartite if and only if it has no odd cycles
A graph is connected if and only if it has a spanning tree
A binary graph cannot be colored with 3 colors
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
There are k boxes in a pigeon case. Choose the correct option(s) such that atleast one of the box has two pigeons [MSQ]
K+1
K-1
K+2
k/2 +1
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
In a linguistic project, Arjun made his report with 19 pages. There were 6 results pages and 12 discussion pages and cover page.

The report must be made such that, all results pages must be together and and can be placed anywhere in between the discussion pages. The 12 discussion pages have page numbers and they must be in the sequence.The front page must be the cover page.

Just before submission, all the pages were fallen down and arjun just took them in a random order and submitted with cover page in the first and rest all in random. What is the probability that they are in prescribed order

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
A CPU has 32 bit instructions. The program starts at address 200 (in decimal). Which of the following is not a valid program counter (all values in decimal)
500
300
400
215
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Choose correct statement/s regarding RISC and CISC processors from the below: [MSQ]
RISC doesn’t have a hard-wired control unit
CISC has a microprogrammed control unit
RISC processors are pipelined to achieve average clocks per instruction around 1
CISC processors are generally not highly pipelined.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
A 2-way set associative cache is 512 Kbytes in size. How many bits are needed for the set number and block offset together in the physical address if block size is 32 Bytes?
15
16
18
17
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
A DMA module is transferring characters of 1 byte size to memory using cycle stealing, from a device transmitting at 6400 bits per second. The processor is fetching instructions at the rate of 1 MIPS(1 million instructions per second). By how much the processor will be slowed down due to DMA activity if 2 instructions are needed to transfer 1 character?
1%
0.1%
0.08%
0.16%
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider two cache organizations. The first one is 64 KB 4 way associative with 64 byte block size. The second one is of the 64 KB direct mapped cache. The size of an address is 32 bits in both organizations. A 4 to 1 multiplexer has latency of 0.8 ns which k bit comparator has latency of k/5 nsec. If H1 = hit latency of set associative cache and H2 = hit latency of direct mapped cache, what is the H1+H2 ? (in nsec) __________
7.6 ns
8.1 ns
5 ns
8.7 ns
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Let X be a decimal number. If X can be represented by a 10 digit hexadecimal number, then what is the minimum number of binary bits required to represent X?
40
10
30
31
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
A MOD 2^n synchronous counter counter constructed using T flip-flops. Assume that an arbitrary number of AND gates are available. What is the minimum number of T flip-flops required?
n
2n
2^n
n^2
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
A half adder is implemented with XOR and AND gates. A full adder is implemented with two half adders and one OR gate. The propagation delay of an XOR gate is 3ns, OR gate is 1ns and AND gate is 2ns. The propagation delay of the full adder is ____ns.
6
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
An odd function outputs 1 whenever the input has an odd number of 1s, otherwise it outputs 0.

Which of the following statements is true? MSQ

Odd function is a neutral function
Odd function is not a neutral function
For a neutral function, the number of minterms is equal to the number of maxterms.
For a neutral function, the number of minterms is equal to half of the number of maxterms.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Minimum number of AND, OR gates(FAN-IN 2) required to implement A + CD + CB.
3
4
2
5
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66