You are on page 1of 8

Quantitative

1. A man, a woman and a kid can together finish a bit of work in 3 days. In the event
that a man alone can do it in 6 days and a kid alone in 18 days, to what extent will a
woman take to finish the work?

A - 9 days

B - 21 days

C - 24 days

D - 27 days

2. H.C.F and L.C.M of two 3-digit numbers are 29 and 4147 respectively. What is the
sum of the numbers?

A - 666

B - 669

C - 696

D - 966

3. There were 24 students in a class. One of them, who was 18 years old, left the class
and his place was filled up by a new student. If the average of the class thereby was
lowered by 1 month, the age of the new student is -

A - 14 years
B - 16 years

C - 17 years

D - 15 years

4. A line goes through the point (3, 5) and makes an edge of 135⁰with the x-pivot. The
mathematical statement of the line is

A - x+y-8 = 0

B - x-y+8

C - x-y-8= 0

D - none of these

5. The monthly salary of A , B , C is in the proportion of 2:3:5.If C's monthly salary is


Rs.1200 more than that of A , then B's annual salary is

A - Rs.14400

B - Rs.24000

C - Rs.2000

D - Rs.1200
Logical

1. What is the time complexity of the following recursive implementation used to find the
sum of the first n natural numbers?
#include<stdio.h>
int recursive_sum(int n)
{
if(n == 0)
return 0;
return n + recursive_sum(n - 1);
}
int main()
{
int n = 5;
int ans = recursive_sum(n);
printf("%d",ans);
return 0;
}

A - O(1)

B - O(n)

C - O(n2)

D - O(n3)

2. How can we describe an array in the best possible way?

A - The Array shows a hierarchical structure.

B - Arrays are immutable.

C - Container that stores the elements of similar types

D - The Array is not a data structure


3. When the user tries to delete the element from the empty stack then the condition is
said to be a ____

A - Underflow

B - Garbage collection

C - Overflow

D - None of the above

4. From the following, which quality deals with maintaining the quality of the software
product?

A - Quality assurance

B - Quality control

C - Quality efficiency

D - None of the above

5. Which of the following is the prefix form of A+B*C?

A - A+(BC*)

B - +AB*C

C - ABC+*

D - +A*BC
6. In 8086 microprocessor , the address bus is ______ wide

A - 10 bit

B - 20 bit

C - 16 bit

D - 12 bit

7. Which register is used to store the output generated by ALU?

A - Special Function Register

B - Timer Register

C - Accumulator

D - Stack Pointer

8. Which of these primary objectives have to be achieved for the requirement model?

A - To describe what the customer requires

B - To establish a basis for the creation of a software design

C - To define a set of requirements that can be validated once the software

D - All mentioned above

9. What is another name for the circular queue among the following options?
A - Square buffer

B - Rectangle buffer

C - Ring buffer

D - None of the above

10. What is the number of layers in the OSI model?

A - 2 layers

B - 4 layers

C - 7 layers

D - 9 layers

Logical

1. Which number should come next in the series, 48, 24, 12, ......?

A-8

B-6

C-4

D-2

2. I. All the colleges in the city had to keep closed for three days a week.

II. Many students have left the local colleges.


A - Statement II is the cause and statement I is its effect

B - Statement I is the cause and statement II is its effect

C - Both the statements are effects of independent causes

D - Both the statements are independent causes

E - Both the statements are effects of some common cause

3. Which word does not belong to others?

A - Inch

B - Kilogram

C - Centimeter

D - Yard

4. Arrange the following words in a meaningful sequence.

1) Infection

2) Consultation

3) Doctor

4) Treatment

5) Recovery

A - 1, 3, 4, 5, 2
B - 1, 3, 2, 4, 5

C - 1, 2, 3, 4, 5

D - 2, 3, 5, 1, 4

5. Peter is in the East of Tom and Tom is in the North of John. Mike is in the South of
John then in which direction of Peter is Mike?

A - South-East

B - South-West

C - South

D - North-East

You might also like