IT Trainer Questions


Q:

Which is the next number in the sequence:

1, 3, 6, 11, 20, 37, ??

A) 49 B) 56
C) 64 D) 70
 
Answer & Explanation Answer: D) 70

Explanation:

Here the given series is 1, 3, 6, 11, 20, 37, ??,

and the logic behind the series is

1 x 2 + 1 = 3

3 x 2 + 0 = 6

6 x 2 + (-1) = 11

11 x 2 + (-2) = 20

20 x 2 + (-3) = 37

37 x 2 + (-4) = 70

 

Hence, the next number in the given series is 70.

Report Error

View Answer Report Error Discuss

6 41813
Q:

Question :

In a cricket team, the average age of eleven players in 28 years. What is the age of the captain?

Statements :

a. The captain is eleven years older than the youngest player.

b. The average age of 10 players, other than the captain is 27.3 years.

c. Leaving aside the captain and the youngest player, the average ages of three groups of three players each are 25 years, 28 years and 30 years respectively.

A) All a,b and c follows B) Only a and c follows
C) Either b alone or a & b follows D) None
 
Answer & Explanation Answer: C) Either b alone or a & b follows

Explanation:

From statement (b)
Average of 11 players = 11 x 28 = 308
Average of 10 players = 10 x 27.3 = 273
Age of captain = 308 - 273 = 35.

From the Statement (a) we can say that captain's age (C) = y + 11 ...(1) where y-youngers age
From the statement (c),the averge age of 3groups of 3players each was given,
It means total 9 players age was given indirectly,
1st group: 25 x 3 = 75
2nd group: 28 x 3 = 84
3rd group: 30 x 3 = 90
Total  is 75 + 84 + 90 = 249
Now {C + Y + (9 players age sum)}/11 = 28
Y + 11 + Y + (249) = 28 x 11=308
2Y+260=308
2Y = 308-260 = 40 ==> Y=24 ==> C(captain's age)= Y+11 = 24+11 = 35

Therefore, statement b alone or a & c only is the answer.

Report Error

View Answer Report Error Discuss

Filed Under: Statement and Conclusions
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

8 41078
Q:

Transition : Change :: Immobility :  ?

A) Stillness B) Liveliness
C) Action D) Busyness
 
Answer & Explanation Answer: A) Stillness

Explanation:

Given Transition is to Change, and we know that Transition and change are Synonyms. Similarly, Immobility means not moving and synonym of immobility are motionlessness, stillness,...

 

Hence, Transition is to change as immobility is to stillness.

Report Error

View Answer Report Error Discuss

Filed Under: Analogy
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

37 39481
Q:

 If a2 = 12, then a4 =? 

 

A) 144 B) 72
C) 36 D) 24
 
Answer & Explanation Answer: A) 144

Explanation:

Given a x a = 12

asked to find a x a x a x a =  (a x a) x (a x a)

a4 = a2 x a2 

= 12 x 12

= 144.

 

More :: Mathematical operations questions and answers.

Report Error

View Answer Report Error Discuss

Filed Under: Numbers
Exam Prep: Bank Exams , AIEEE , CAT , GATE
Job Role: Bank Clerk , Analyst , Bank PO , IT Trainer

6 39134
Q:

Find the odd one out of the following number series?

56, 64, 48, 90, 16, 144

 

A) 48 B) 64
C) 90 D) 16
 
Answer & Explanation Answer: C) 90

Explanation:

The given number series follows a pattern that,

56

56 + 8 = 64

64 - 16 = 48

48 + 32 = 80 (Not equal to 90)

80 - 64 = 16

16 + 128 = 144 

 

Hence, the odd number in the given number series is 90.

Report Error

View Answer Report Error Discuss

4 38341
Q:

Which operator performs pattern matching ?

A) LIKE operator B) EXISTS operator
C) BETWEEN operator D) None of these
 
Answer & Explanation Answer: A) LIKE operator

Explanation:

LIKE is a keyword that is used in the WHERE clause. Basically, LIKE allows us to do a search based operation on a pattern rather than specifying exactly what is desired (as in IN) or spell out a range (as in BETWEEN).

 

The syntax is as follows:
SELECT "column_name"
FROM "table_name"
WHERE "column_name" LIKE {PATTERN}

 

{PATTERN} often consists of wildcards.

 

In SQL, there are two wildcards:


% (percent sign) represents zero, one, or more characters.

_ (underscore) represents exactly one character.

 

More :: Certification Questions on SQL

Report Error

View Answer Report Error Discuss

37 37725
Q:

Thread is to String as Cask is to

A) Barrel B) Disc
C) Wallet D) Box
 
Answer & Explanation Answer: A) Barrel

Explanation:

Here Thread and String are Synonyms of each other. Then the answer will be the synonym of Cask. 

  • Cask is nothing but a large barrel-like container used for storing liquids, typically alcoholic drinks. 

Ex : Drum, Vessel, Tank, Barrel, Hogshead, Firkin,...

 

  • Here from the options Barrel is the only synonym of Cask.

 

Thus,  Thread : String :: Cask : Barrel

Report Error

View Answer Report Error Discuss

Filed Under: Analogy
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

45 37706
Q:

Simplify

39.96% of 649.85 ÷13.07 = 45.14 - ?

A) 25 B) 26
C) 27 D) 28
 
Answer & Explanation Answer: A) 25

Explanation:

This can be easily simplified by Approximation process

Given 39.96% of 649.85 ÷13.07 = 45.14 - ? can be written as 

40% of 650 ÷13 = 45 - ?

 

40 x 65010013 = 45 - ?? = 45 - 20? = 25.

Report Error

View Answer Report Error Discuss

4 37486