There is a 60% increase in amount in 3 years and simple interest. What will be the compound interest of Rs.8000 after 3 years at the same interest?
Rs.5628
Rs.3872
Rs.5824
Rs.3972
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
If one-fourth of one-third of a number is 25, then two-tenth of that number is _____

60
300
120
45
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Tickets numbered from 1 to 45 are mixed up and then a ticket is drawn at random. What is the probability that the ticket drawn has a number which is multiple of 4 (or) 5?
11/45
7/45
2/5
8/15
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
A dishonest dealer purchases goods at 20% discount of the cost price of Rs.x and also cheats his wholesaler by getting 20% extra through false weighing, per kg. Then he marks up his goods by 80% of x, but he gives a discount of 25% besides he cheats his customer by weighing 10% less than the required. What is his overall profit percentage?
120%
80%
125%
135%
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

A man covered a certain journey by a bus. If he covered 25% of the distance at the speed of 10 kmph, 45% of the distance at 30 kmph and remaining of the distance at 15 kmph, then his average speed is?

16.66 km/h

18.33 km/h

17.37 km/h

14.67 km/h

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
In triangle ABC length of the side BC is less than twice the length of the side AB by 4 cm length of the side AC exceeds the length of the side AB by 8 cm. The perimeter is 36 cm. The length of the smallest side of the triangle ABC is?
8 cm
6 cm
16 cm
14 cm
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
' They have written 3 letters already.'

What is the tense of the sentence given above?

Present continuous tense
Simple present tense
Present perfect tense
Present perfect continuous tense
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Maya _______ at the children for making a mess. [MSQ]
Screamed
Screams
is screaming
has been screaming
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
What the meaning of the word ' Inchoate'
having lot of hatred
Filled with awe
only partly in existence
desperately hoping for good
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Read the passage and answer the question.

PASSAGE

In 1885, the U.S. government locked funds to build a base for a statue, but a newspaper campaign attracted as many as 160,000 people to contribute. That was the Statue of Liberty. But it's the British rock group Marillion that is often credited for using a loyal and engaged fan base to fund a $60,000 US tour and subsequent album through its website. Back in 1997, that was the world’s first online crowdfunding campaign.

Since the early 2000s, several online crowdfunding platforms have come up across the globe helping people to bring their unique ideas to life. Either in the form of launching a unique product that they have designed or a film that they need help to make or simply raising funds for an ailing family member - crowdfunding in making all of it possible. Such has been the growth of the segment that statistics predict the size of the global crowdfunding market to be $28.8 billion by 2025.

It was a tiring flight from New York to Singapore in economy class that prompted Zeff O’ Nell to design a seat that could allow economy class passengers to lie down. The Zephyr seat took about four months to be designed and another eight months to be engineered and constructed into a mock-up. The result was a lie-flat social distancing complaint seat for airlines that could retrofit existing commercial aircrafts.

Through crowdfunding the company wants to raise money to scale up the business. It has currently raised more than 101K through its online campaign. As they say it's time to reach for the stars.

Question:

What is the first phase of crowdfunding?

Pre-campaign
Campaign
Post-campaign

Mission trips

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
#include<stdio.h>

void main()

{

int i=257;

int *iptr=&i;

printf("%d %d", *((char*)iptr),*((char*)iptr+1));

}

What will be the output of the above program?

1 1
1 2
2 3
2 2
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In a BST, we can find the Kth smallest element to a given element in O(1) time. ___
True
False
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In a BST, we can find the Kth smallest element to a given element in O(1) time. ___
False
True
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In-order is same as :
Depth-first order
Topological order
Linear order
Breadth-first order
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
What will be the output of the following program?

#include <stdio.h>

#define square(x) (x*x)

int main(void) {

int a;

int b=3;

a=square(b+2);

printf("%d",a);

return 0;

}

11
14
16
18
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following AVL tree.

Which of the following order of elements are inserted into an empty AVL tree, so that it is possible to get the above AVL tree?

84, 61, 76, 15, 88, 73, 17, 80
88, 84, 80, 73, 76, 15, 61, 84
76, 15, 88, 73, 17, 80, 61, 84
None of these
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
If a, b and c are integer variables with the values a=8, b=3 and c=-5. Then what is the

value of the arithmetic expression: 2 * b + 3 * (a-c)

45
-16
6
-1
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Choose the correct statement about the following program:

(Consider int needs 32 bits)

#include<stdio.h>

void main()

{

unsigned int n;

int temp=0;

scanf("%u", &n);

for(;n;n>>=1)

{

if(n & 1)

temp++;

}

printf("%d", temp);

}

It sets all bits in the number n to 1
It counts the number of bits that are 0 in the number n.
It counts the number of bits that are 1 in the number n.
Runtime error
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

Match List I with List II

Choose the correct answer from the options given below:

A-I, B-III, C-IV, D-II

A-III, B-I, C-IV, D-II

A-III, B-I, C-II, D-IV

A-I, B-III, C-II, D-IV

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
The running time of an algorithm is O(g(n)) if and only if

  1. its worst-case running time is O(g(n)) and its best-case running time is (g(n))(O=big O)
  2. its worst-case running time is (g(n)) and its best-case running time is O(g(n))(O=big O)
  3. O(g(n))=(g(n))(O=big O)
  4. O(g(n))ω(g(n))is non-empty set, (o=small o)

Choose the correct answer from the options given below:

(A) only
(B) only
(C) only
(D) only
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33

Consider the undirected graph below: [MSQ]

Using Prim’s algorithm to construct a minimum spanning tree starting with node a, which one of the following sequences of edges represents a possible order in which the edges would be added to construct the minimum spanning tree?

(a,b), (a,h), (h,g), (g,f), (f,c), (c,i), (c,d), (d,e)

(a,b), (b,h), (g,h), (g,i), (c,i), (c,f), (c,d), (d,e)

(a,b), (b,c), (c,i), (c,f), (f,g), (g,h), (c,d), (d,e)

(a,b), (g,h), (g,f), (c,f), (c,i), (f,e), (b,c), (d,e)

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Which among the following statement(s) is (are) true?

  1. A hash function takes a message of arbitrary length and generates a fixed length code.
  2. A hash function takes a message of fixed length and generates a code of variables.
  3. A hash function may give the same value for distinct messages.

Choose the correct answer from the options given below:

(A) only
(B) and (C) only
(A) and (C) only
(B) only
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

Both Statement I and Statement II are true

Both Statement I and Statement II are false

Statement I is correct but Statement II is false

Statement I is incorrect but Statement II is true

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

P-2, Q-3, R-4, S-1
P-2, Q-4, R-3, S-1
P-4, Q-3, R-2, S-1
P-4, Q-2, R-3, S-1
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Select the correct option/options. [MSQ]
Every context free language has a regular superset.
Every context free language has a regular subset.
Every finite subset of a language is regular.
Every subset of regular language is regular.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Consider the following languages.

L1={a^m b^n | m=n & m,n>0}

L2={a^m b^n | m≠n & m,n>=0}

Select the correct option.

Both L1 and L2 are DCFL but not regular.
L1 and L2 are complement to each other.
L1 is DCFL and L2 is CFL but not DCFL.
Both L1 and L2 are CFL but not DCFL.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following PDA (q0 is initial state and qf is final state). Select the correct option with reference to PDA.

The language accepted by PDA is L={a^m b^n | m>n & m,n>0}
The language accepted by PDA is L={a^m b^n | m>n & m,n>=0}
The language accepted by PDA is L={a^m b^n | m<n & m,n>0}
The language accepted by PDA is L={a^m b^n | m<n & m,n>=0}
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the PDA M = {{q0, q1}, {0,1}, {0,1, z0}, {q0},{ z0}, {qF}}

δ = {

(q0, 0, z0) -> (q0, 0z0),

(q0, 0,0) -> (q0, 00)

(q0, 1,0) -> (q0, 10)

(q0, 1,1)-> (q0, 11)

(q0, 0,1) -> (q1, ∊)

(q1, 0,1) -> (q1, ∊)

(q1, 0,0) ->(q1, ∊)

(q1, ∊, z0) -> (qF, ∊)

}

The language corresponding to above PDA is

L = {0^n1^n0^n | n ≥ 1}
L = {0^n1^m0^(n+m) | n,m ≥ 1}
L = {0^n1^(n+m)0^m | m, n ≥ 1}
L = {0^n1^n0^m | m, n ≥ 1}
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following definitions.

prefix (L) = {u | ∃v : uv ε L}

suffix(L)= {v | ∃u uv ε L}

Let L1 and L2 are two languages such that

L1= (a+b)*b

L2=a(a+b)*b*

Select the correct option.

prefix(L1)= suffix(L2)
prefix(L1)=prefix(L2)
suffix(L1)=suffix(L2)
suffix(L1)=prefix(L2)
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Suppose a programming language does not allow integer division operation. This is generally detected in the phase of ____
Lexical analysis
Syntax analysis
Semantic analysis
Code optimization
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Assume a compiler X for C language generates a code C for a computer Y. This code C can be run on __
It can be run only on computer Y.
It can be run on any computer.
It can be run only on the computers which have the processor and operating system similar to computer Y.
It can be run only on the computers which have the processor, operating system and peripherals similar to computer Y.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the grammar G whose productions are:

A-> abA | aAb | ϵ

Select the correct option. [MSQ]

The grammar is ambiguous.
The grammar generates all even length strings.
The string “ab” has one parse tree.
There is a string generated by the grammar which has exactly one parse tree.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Consider the given below grammar.

S→ X&Z | Y*

X→ YZ

Y→ #Y | Z

Z→ &++S | ϵ

For which non terminal /non-terminals, the “&” is a part of corresponding FOLLOW set.

{Y}
{ Y, Z}
{S, Y, Z}
{S, X, Y, Z}
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The following code segment is executed on a processor which allows only register operands in its instructions. Each instruction can have at most two sources operands and one destination operand. Assume that all variables are dead after this code segment.


z=x+y;

p=z*x;

q=z+x;

a=z*z;

if(a>x) {

k=x*x;

}

else {

p=p*p;

q=q*q;

}


Suppose the instruction set architecture of the processor has only two registers. The only allowed compiler optimization is code motion, which moves statements from one place to another while preserving correctness. The minimum number of spills to memory in the compiled code will be ____________

1
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
Refer the diagram below, where the attributes of relation R are characterized.

Identify the correct statements?

A5 is a weak attribute
A3 is a multivalued attribute
A2 is a derived attribute
A3 is a foreign key attribute
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Identify the CORRECT statement(s)?
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Consider the following statements based on the wait-die scheme for deadlock prevention:

1. Older transactions may wait for younger one to release data items. (older means smaller timestamp).

2. Older transactions force rollback of younger transactions instead of waiting for it. Younger transactions may wait for older ones.

3. A transaction may die several times before acquiring needed data items.

4. It is a non-preemptive scheme.

5. It is a preemptive scheme.

Identify the group of statements which are incorrect.

1, 3, 4
2, 5
1, 3, 5
2, 3, 4
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Suppose timestamp ordering protocol is used to control concurrent access. In this context a transaction Ti issues a read(Q). Q is the data item. Identify the correct operations for implementing the read.
If Timestamp(Ti) ≤ Write-timestamp(Q), the read operation is executed
If Timestamp(Ti) ≤ Write-timestamp(Q), Read-timestamp(Q) is set to max(Read-timestamp(Q), Timestamp(Ti))
If Timestamp(Ti) ≤ Write-timestamp(Q), Read-timestamp(Q) is set to max(Read-timestamp(Q), Write-timestamp(Q))
If Timestamp(Ti) ≤ Write-timestamp(Q), the read operation is rejected, and Ti is rolled back
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 LRU page replacement algorithm?
14
18
17
13
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider a paging system that uses a 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. To make the memory access faster, a physical level-1 cache is introduced, with no write back mechanism. The cache access time is 75 ns and search time is negligible, with a cache hit rate of 90%. Assume that the TLB hit ratio is 95%, and the page tables are not cached, the average memory access time in ns (round off to 2 decimal places) is ________.
120ns
96.5 ns
112.5 ns
102.5 ns
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider a disk queue with requests on cylinders 98, 183, 41, 122, 14, 124, 65, 67. The head is initially at cylinder number 53 moving towards larger cylinder numbers on its servicing pass. The cylinders are numbered from 0 to 199. The total head movement (in number of cylinders) incurred while servicing these requests using the SCAN scheduling algorithm is
330
329
331
328
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a virtual address with a page size of 1KB. Two-level paging is used with an equal number of entries in every page table. If the page table entry is 2 bytes long, what is the maximum size of the physical address space. ?
512MB
256MB
64MB
128MB
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
A process has 5 logical pages, and accesses them in this order: 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5. Which of the following statements is/are TRUE ? [MSQ]
The above referenced string suffers from Belady’s anomaly when used with FIFO page replacement algorithm.
The above referenced string generates 9 page faults with 3 frames, and 10 page faults with 4 frames, using the FIFO page replacement.
The above referenced string suffers from Belady’s anomaly when used with LRU page replacement algorithm.
In LRU, the N most recently used frames are always a subset of N+1 most recently used frames. So if a page fault occurs with N+1 frames, it must have occurred with N frames also.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following statements with respect to the application layer:

S1: Datagram is the PDU (Protocol data unit) used.

S2: There is a fixed limit on the maximum size of data that it can pass on the TCP layer.

Which of the following options is correct?

Only S1 is true
Only S2 is true
Both S1 and S2 are true
Neither of S1 or S2 is true
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following protocol is used to monitor network devices such as hubs, switches and routers?
OSPF
RIP
SMTP
SNMP
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following statements:

S1: Data link layer define the boundaries of the frame because framing is always of fixed size.

S2: Bit stuffing is the process of adding one extra 0 after 6th bit whenever five consecutive 1’s follow a 0 in the data if 0111110 is assumed as a flag.

Which of the following option is correct?

Only S1 is true
Only S2 is true
Both S1 and S2 are true
Neither of S1 or S2 is true
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
An IP router with a Maximum Transfer Unit (MTU) of 1400 bytes excluding header length has received an IP datagram of size 4000 bytes excluding IP header length. The value of offset field in the header of the third IP fragment generated by the router for this packet are ________?
350
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
A Cycle graph with 101 vertices has chromatic number
2
3
4
5
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
The set {1, 2, 3, …, n-1} is a Group under multiplication modulo n. Then the smallest value of n between 20 and 30 is (20, 30 included) _________?

23
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
In a class of 40 students, 14 are studying Maths and 29 are studying Operating systems. If 5 students are practicing both then the number of students not studying any of Maths, Operating system are _____.

2
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
0
-1/16
Undefined
1/2
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
From a well shuffled deck of cards, a card is drawn and placed back after noting it for 104 times consecutively. In this poisson distribution what is the probability that atleast once we get a ace of spades. ( e^-2 = 0.136)
0. 786
0.524
0.864
0.345
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The eigen values of matrix are 5, -1. Choose the eigen value of matrix “-2A+3I” [MSQ]

7
-7
5
-5
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
The determinant of the matrix is
(a-c)(b-c)(b-a)
(a+b)(b+c)(c+a)
(a-b)(b-c)(c-a)
None
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The inverse of the matrix is
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a write through cache having 90% hit ratio for read operation and access time of 20ns. Main memory has an access time of 180ns. What is the average time for write operation (in ns)?
180
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Match the following with the addressing modes and the example instructions:

P-iii, Q-i, R-ii
P-iii, Q-ii, R-i
P-i, Q-ii, R-iii
P-i, Q-iii, R-ii
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider the following statements regarding memory-mapped I/O and isolated I/O. [MSQ]

Choose the correct statement/s

Memory mapped I/O is faster than isolated I/O.
Memory mapped I/O is more complex than isolated I/O.
Memory mapped I/O consumes less power than isolated I/O.
In isolated I/O, all of the CPU's addressing modes are available for the I/O as well as the memory.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00
A computer has a 256KB, 8-way set associative, write back data cache with block size of 64 Bytes. The processor sends 32 bit addresses to the cache controller. Each cache tag directory entry contains, in addition to address tag, 2 valid bits, 1 modified bit and 1 replacement bit.

The number of bits in the tag directory entry associated with each cache line is ?

17
21
18
20
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider a disk drive with the following specifications:

16 surfaces, 512 tracks/surface, 512 sectors/track, 512 B/sector, rotation speed 6000 rpm. The disk is operated in burst mode. Memory cycle time is 80 nsec. The maximum percentage of time that the CPU gets blocked during DMA operation to transfer 64KB from the disk if one word is 4 bytes long:

10.23
25.44

66.66
33.33
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Consider the following function

f(a,b,c)= Σ(0,1,2,6)

Which of the following is/are true about the function f? (MSQ)

f is a neutral function
f is self-dual
f is neutral function but not self-dual
f is neither function nor self-dual
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.00
Let A and B are two unsigned binary numbers. Then A-B results in ____
Overflow
Carry 1 if A>B
Carry 0 if A>B
Carry 1 if A<B
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Consider a 4 variable function f(a,b,c,d)= π(1,6,11,12) + d(5,7,13,15),

The number of PRODUCT terms in the minimal SoP expression of the function f() is____

4
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.00

  1. Consider the following MUX which implements the SUM operation of Full Adder.



If S1=B and S0=C, then which of the following are the possible input values of MUX?

I0= A, I1=A, I2=A and I3=A.
I0= A, I1=A, I2=A and I3=A.
I0= A, I1=A, I2=A and I3=A.
I0= A, I1=A, I2=A and I3=A.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66

  1. Consider the following counter with initial state 000.


The state sequence of the counter is____.

8
5
4
3
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66