Aptitude Test 1

Published on June 2016 | Categories: Documents | Downloads: 33 | Comments: 0 | Views: 227
of 7
Download PDF   Embed   Report

Comments

Content

Test -1
NOTE: This test contains two Parts: I) Aptitude Part (50 Marks) II) Technical Part. (50 Marks) • Aptitude Part contains two sections. A) Section-I for Reasoning/Puzzles B) Section-II for Numerical C) Section-III for English • Total Marks for Aptitude Part = 50 Marks • Technical Part contains A) C Questions ( Fill in the Blanks , Multiple choice questions , one line answer questions etc.) B) Data Structures C) Discrete Structures D) Basic Computer Engineering related Questions • Total Marks for Technical Part = 50 Marks

APTITUDE QUESTIONS( 50 Marks) Section-1 : Reasoning (10*3=30 Marks) Note : All Questions are Compulsory. Each Question carries equal Marks.

Q-1. The minimum number by which 60 is to be multiplied to generate a square. a) 20 b) 30 c) 15 d) 40 3 Marks

Q-2 Select the odd one out a) Oracle b) Linux c) Ingress d) DB2 3 Marks

Q-3 Complete the series. 4, -5, 11, -14, 22, --a) -27 b) -30 c) -33 d) -36 3 Marks

Q-4 In a team of 12 persons, 1/3 are women and 2/3 are men. To obtain a team with 20% women how many men should be hired? a) 4 b) 6 c) 8 d)12 3 Marks

Q-5 In a certain company, 20% of the men and 40% of the women attended the annual company picnic. If 35% of all the employees are man, what percent of all the employees went to the picnic? a) 33% b)25% c) 40% d)None of these 3 Marks

Q-6 It cost a college Rs.0.70 a copy to produce a Programme for the homecoming football game. If Rs.15,000/- was received for advertisements in the programme, how many copies at Rs.0.50 a copy must be sold to make a profit of Rs.8000/- ? a) 27000 b)30000 c)350000 d)420000 3 Marks

Q-7 The dimensions of a certain machine are 48" X 30" X 52". If the size of the machine is increased proportionately until the sum of its dimensions equals 156", what will be the increase in the shortest side? a) 6’’ b)2’’ c)8’’ d)5’’ 3 Marks

Q-8 A can copy 50 papers in 10 hours while both A & B can copy 70 papers in 10 hours. Then for how many hours required for B to copy 26 papers? a)10 b) 9 c)12 d)13 3 Marks

Q-9 My flight takes of at 2am from a place at 18N 10E and landed 10 Hrs later at a place with coordinates 36N70W. What is the local time when my plane landed? a) 6:00 am b) 6:40am c)7:40 d)7:00 e)8:00

(Hint : Every 1 deg longitude is equal to 4 minutes . If west to east add time else subtract time) 3 Marks

Q-10 Given $ means Tripling and % means change of sign then find the value of $%$6%$%6 a) -10 b) -72 c)23 d) -47 3 Marks

Section-II for Numerical (5*2 = 10 Marks) Note : All Questions are Compulsory. Each Question carries equal Marks. Q-1 There are some apple if it arranged 3,5,7,9 rows get 1 reminder but if it is arranged 11 no reminder. how many apples are there ? a) 549 b)246 c)946 d)649 (2 Marks)

Q-2 Two trains start simultaneously from station X and station Y and heads towards each other. Every one hour a train leaves from both stations. if 5 hours is the time to reach the other station, how many trains will u cross if u r traveling in any one direction? a) 5 Trains b) 3 Trains c) 10 Trains d) 9 Trains ( 2 Marks)

Q-3 Pipe A can fill in 20 minutes and Pipe B in 30 mins and Pipe C can empty the same in 40 mins. If all of them work together, find the time taken to fill the tank (a) 17 1/7 mins (b) 20 mins (c) 8 mins (d) none of these ( 2 Marks)

Q-4 Find the smallest number in a GP whose sum is 38 and product 1728 (a) 12 (b) 20 (c) 8 (d) none of these (2 Marks)

Q-5 Mr. Shah decided to walk down the escalator of a tube station. He found that if he walks down 26 steps, he requires 30 seconds to reach the bottom. However, if he steps down 34 stairs he would only require 18 seconds to get to the bottom. If the time is measured from the moment the top step begins to descend to the time he steps off the last step at the bottom, find out the height of the stair way in steps? a) 20 steps b) 46 steps c) 10 Steps d) 33 steps (2 Marks)

Section-III for English(5*2=10 Marks)
Note : All Questions are Compulsory. Each Question carries equal Marks Q-1 Write the Antonyms of the given word:i)

Abysmal b) awful c)Superb d)None of these (2 Marks) d)Inflexible (2 Marks)

a) Terrible Dogmatic a) Arbitrary
ii)

b)Flexible

c)Unbending

Relinquish a) Retain
iii)

b) Surrender

c)Abondan

d)Repudiate (2 Marks)

Q-2 archipelago:islands::
(a) arbor:bower (b) garden:flower (c) mountain:valley (d) sand:dune (e) constellation:star Q-3 crow:boastful :: (a) smirk:witty (b) conceal:s;y (c) pout:sulky (d) blush:coarse (e) bluster:unhappy

(2 Marks)

(2 Marks)

TECHNICAL QUESTIONS(50 MARKS) Note : All Questions are Compulsory. Each Question carries equal Marks. Q-1 For the following C program main() { union { int i; char p; struct { int t; char e; char o; }w; }; printf("%d\n",sizeof(l) ); } What is the Output? a) 2 b)3 c)4 d)error (5 Marks)

Q-2 What is the Output? main() { char a[]=="Hello"; printf("%c\n",*a++); } a) Error b)Hello c)6 d) 5 (5 Marks)

Q-3 Computer viruses can spread from one system to anther by means of a) infected disks c)downloaded program from a bulletin board Q-4 An operating system is a a)file manager b)memory manager c)i/o manager d)all of the above 5 Marks b)links to a network d)all of the program 5 Marks

Q-5 What is the type of the algorithm used in solving the 8 Queens problem? a) Backtracking b) Insertion algo. c) Forward Tracking d) Selection algo. 5 Marks Q-6 Find the output in C? 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) One b) Two c)Three d)Four 5 Marks

Q-7. Find the output ? main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }

a) Compiler Error

b) Hello

c)World

d)Hello World

5 Marks

Q-8 Purpose of PC(Program Counter) in a MicroProcessor is a) To store address of TOS(Top Of Stack) b) To store address of next instruction to be executed. c) count the number of instructions. d) to store base address of the stack. Q-9 Windows 95 supports (a) Multiuser (b) n tasks (c) Both (d) None

5 Marks

5 Marks

Q-10 There was a circuit given using three nand gates with two inputs and one output. Find the output. a) OR b) AND c) XOR d) NOT

5 Marks

Sponsor Documents

Or use your account on DocShare.tips

Hide

Forgot your password?

Or register your new account on DocShare.tips

Hide

Lost your password? Please enter your email address. You will receive a link to create a new password.

Back to log-in

Close