Anda di halaman 1dari 14

POORNAM INFOVISION

APTITUDE

Directions for questions 1, 2:

In a class of 150 students, 40 passed in Social Studies, 90 passed in Science and 30 failed in
both the subjects.

Q1. How many students passed in Science but failed in Social Studies?

a) 70

b) 10

c) 90

d) 80

Q2. How many students passed in at most one subject among Science and Social Science?

a) 100

b) 110

c) 140

d) 150

Directions for questions 3 to 7:

In each of the following questions, a set of six statements is given, followed by four answer
choices. Each of the answer choices has a combination of three statements from the given set
of six statements. You are required to identify the answer choices in which the statements are
logically related.

Q3. A. Competitive examinations are tough to pass.

B. There is heavy competition in any field.

C. No student can pass MAT

D. Very few students can pass MAT.

E. MAT is a competitive examination

F. MAT is tough to pass

a) AEF

b) ABC

c) DFB

d) CDE

Q4. A. Some lids are nibs


B. All hooks are lids.

C. All hooks are nibs

D. No lid is a nib

E. No lid is a hook

F. No nib is hook

a) EFD

b) BCA

c) DEA

d) CDA

Q5. A. All Pens are knives

B. All knives are spoons

C. No knives are pens

D. No knives are spoons.

E. All pens are spoons.

F. All spoons are pens.

a) ABE

b) ABF

c) AFE

d) DBE

Q6. A. All cats are goats

B. All Goats are dogs.

C. No goats are cows

D. No goats are dogs

E. All Cows are dogs

F. All dogs are cows

a) FAB

b) ABE

c) AFB

d) ABF
Q7. A. All MBAs are logical

B. Sudir is rational.

C. Sudhir is a logical MBA

D. Sudhir is a man

E. Some men are MBAs

F. All men are rational.

a) DEC

b) EAF

c) BCF

d) FDB

C - Technical Questions:

Q8. What will be the output for the following program?

void main()

int const *p=5;

printf(%d,++(*p));

a) 5

b) 6

c) Run time error

d) Compiler error

Q9. What will be the output for the following program?

main()

int c[]={2.8,3.4,4,6.7,5};

int j,*p=c,*q=c;

for(j=0;j<5;j++) {

printf(%d,*c);

++q; }
for(j=0;j<5;j++) {

printf(%d,*p);

++p; }

a) 2 2 2 2 2 2 2 3 4 5

b) 2 2 2 2 2 2 3 4 6 5

c) 2 3 4 6 5 2 3 4 6 5

d) 2 3 4 6 5 3 4 5 6 7

Q10. What will be the output for the following program?

main()

extern int i;

i=20;

printf(%d,i);

a) 20

b) Grabage value

c) Linker error

d) Compiler error

Q11. What will be the output for the following program?

main()

int i=-1,j=-1,k=0,l=2,m;

m=i++&&j++&&k++||l++;

printf(%d %d %d %d %d, i, j, k, l, m);

a) 0 0 1 3 0

b) 0 0 1 3 2

c) 0 0 1 3 1
d) 1 1 2 3 1

Q12. What will be the output for the following program?

main()

char *p;

printf(%d %d, sizeof(*p), sizeof(p));

a) 1 1

b) 2 1

c) 1 2

d) 2 2

Q13. What will be the output for the following program?

main()

int i=3;

switch(i)

default: printf(zero);

case 1: printf(one);

break;

case 2: printf(two);

break;

case 3: printf(three);

break;

a) zero

b) zero one two three

c) three
d) zero three

Q14. What will be the output for the following program?

main()

printf(%x,-1<<4);

a) ffff

b) 0000

c) 0fff

d) fff0

Q15. What will be the output for the following program?

main()

char String[]=Hello World;

display(string);

void display(char *string)

printf(%s,string);

a) Hello World

b) Linker error

c) Compiler error

d) Hello

Q16. What will be the output for the following program?

main()

struct xx

{
int x;

struct yy

char s;

struct xx *p;

};

struct y *P;

};

a) Blank screen

b) Linker error

c) Compiler error

d) Infinite execution

Q17. What will be the output for the following program?

#include

main()

struct xx

int x=3;

char name[]=hello;

};

struct xx *s;

printf(%d,s->x);

printf(%s,s->name);

a) 3 hello

b) 3hello

c) Linker error
d) Compiler error

LINUX Questions:

Q18. You are trying to create four partitions on a linux system and you get an error while
creating the fourth partition. Why?

a) Linux does not allow four partitions.

b) There is not enough disk space for the fourth partition.

c) The swap partition must be created first.

d) The last partition must be a swap partition.

Q19. Which of the following is not a valid Linux command?

a) rm

b) mv

c) copy

d) more

Q20. Which Linux command is used for renaming a file?

a) rm

b) mv

c) chmod

d) rename

General Technical Questions

Q21. Which of the following does not work over TCP?

a) HTTP

b) SMTP

c) FTP

d) None of the above

Q22. Which IP Addressing class allows for the largest number of hosts?

a) Class A

b) Class A and B

c) Class B

d) Class C

Q23. What is the maximum decimal number that can be accomodated in a byte?
a) 128

b) 256

c) 255

d) 512

Q24. What is the number of control lines for a 16 output decoder?

a) 2

b) 4

c) 16

d) 10

Q25. The BIOS of a computer is stored in:

a) RAM

b) ROM

c) CACHE

d) HARD DISK

Q1. Snehs age is 1/6th of her fathers age. Snehs fathers age will be twice of Vimals age after
10 years. If Vimals eighth birthday was celebrated two years before, what is Snehs present
age?

a) 24 years

b) 30 years

c) 6 2/3 years

d) None of these

Q2. One bottle is half-full of oil and another bottle with twice the capacity is one quarter full
of oil. If water is added so that both the bottles are full and the contents of both are then
poured into a third bottle that is empty and large enough to hold the contents of both, what
fractions of the contents in the third bottle is oil?

a) 1/4

b) 1/3

c) 3/8

d) 2/3

ANS: b) 1/3

Q3. If Jacob sold a watch costing Rs.400 to John at 15% profit and john sold the same to
Sudhir at 15% profit, what is the price paid by Sudhir?
a) 460

b) 510

c) 529

d) 560

ANS: c

Q4. A man buys spirit at Rs. 60 per letter, adds water to it and then sells it at Rs. 75 per litter.
What is the ratio of spirit to water if his profit in the feal is 37.5%?

a) 9:1

b) 10:1

c) 11:1

d) None of these.

ANS: (b) 10.1

Q5. If A and B can do a piece of work in 10 days and A alone can do it in 15 days, how long
will B take to do it?

a) 25

b) 20

c) 15

d) 30

Q1. 2598 Successive discounts of 20% and 15% are equal to a single discount of

(a) 30%

(b) 32%

(c) 34%

(d) 35%

(e) 36

ANS: (b)

Q2. A square plate of some size is cut at four corners. Equal squares of the same size are cut
and is formed as open box. If this open box carries 128 ml of oil. What is the size of the side
of the plate?

(a) 17

(b) 14

(c) 13
(d) None of these

Q3. A merchant sells an item at a 20 percent discount. But still makes a gross profit of 20
percent of the cost. What percent of cost would be gross profit on the item have been if it had
been sold without the discount?

(a) 20%

(b) 40%

(c) 50%

(d) 60%

(e) 66.6%

ANS: c) 50%

Q4. A boy has Rs. 2. He wins or loses Re. 1 at a time. If he wins he gets Re. 1 and if he loses
the game he loses Re.1. He can loose only 5 times. He is out of the game if he earns Rs 5.
Find the number of ways in which this is possible?

ANS: 16

Q5. If a boat is moving in upstream with velocity of 14 km/hr and goes downstream with a
velocity of 40 km/hr, then what is the speed of the stream?

(a) 13 km/hr

(b) 26 km/hr

(c) 34 km/hr

(d) none of these

ANS: a

Directions for questions 1 to 4:


Study the table below to answer these questions.
Q1. What percentage of 21 TV sets sold is of ILG?

a) 26%

b) 23%

c) 30%

d) 20%

Q2. Which companys TVs are sold the most?

a) LG

b) Onida

c) Sony

d) Videocon

Q3. What is the sale price of a 21 colour TV set from Sony Company if each colour TV set is
Rs. 2,000 cheaper than the next higher size and the total earning from the sale of Sony colour
TV sets is Rs. 7.5 lakh?

a) Rs. 10,000

b) Rs. 12,000

c) Rs. 14,000

d) Rs. F6;000

Q4. What percentage of black & white TVs sold are from Videocon?

a) 24%

b) 29%

c) 14%

d) 19%

Directions for questions 5 to 8:

Read the below passage carefully and answer the questions:

Five roommates Randy, Sally, Terry, Uma, and Vernon each do one housekeeping task
mopping, sweeping, laundry, vacuuming, or dusting one day a week. Monday through Friday.

* Vernon does not vacuum and does not do his task on Tuesday.
* Sally does the dusting, and does not do it on Monday or Friday. The mopping is done on
Thursday.

* Terry does his task, which is not vacuuming, on Wednesday. * The laundry is done on
Friday, and not by Utna.

* Randy does his task on Monday.

Q5. What day is the vacuuming done?

a) Monday

b) Tuesday

c) Wednesday

d) Thursday

Q6. When does Sally do the dusting?

a) Monday

b) Tuesday

c) Wednesday

d) Thursday

Q7. What task does Vernon do?

a) laundry

b) sweeping

c) sweeping

d) laundry

Q8. What task does Terry do on Wednesday?

a) vacuuming

b) dusting

c) mopping

d) vacuuming

Q9. Which of the following replaces the question mark?

MILD : NKOH :: GATE:::?

a) HCWI

b) HDVQ

c) IBUPOO
d) HDUR

e) None of these

Q10. In a certain code, MONKEY is written as XDJMNL. How is TIGER written in taking
that code?

a) QDFHS

b) SDFHS

c) SHFDQ

d) UJIIFS

e) None of these

Anda mungkin juga menyukai