IT Trainer Questions


Q:

Find the odd man out of the following number series?

222, 271, 308, 332, 348, 357

A) 271 B) 308
C) 332 D) 348
 
Answer & Explanation Answer: B) 308

Explanation:

Here the given series 222, 271, 308, 332, 348, 357 follows a pattern that

222

222 + 49  271

271 + 36 = 307 (NOT 308)

307 + 25 = 332

332 + 16 = 348

348 + 9 = 357

 

Hence, the odd man in the fiven number series is 308.

Report Error

View Answer Report Error Discuss

1 45019
Q:

Find the Odd One Out?

3 24 186 1008 5040 20160

A) 24 B) 20160
C) 186 D) 5040
 
Answer & Explanation Answer: C) 186

Explanation:

The given number series is 3  24  186  1008  5040  20160

Here  the given series follows a pattern that,

3

3 x 8 = 24

24 x 7 = 168 not 186

168 x 6 = 1008

1008 x 5 =  5040

5040 x 4 = 20160

 

Hence the Odd One in the number series is 186.

Report Error

View Answer Report Error Discuss

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

3 45002
Q:

Storage capacity of magnetic disk depends on

A) disk pack in disk surface B) tracks per inch of surface
C) bits per inch of tracks D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Magnetic disk is a kind of data storage device. Storage capacity of magnetic disk depends on 

1. tracks per inch of surface

2. bits per inch of tracks

3. disk pack in disk surface

 

It can be shown as ::

 

magnetic_disc1532069041.jpg image

Report Error

View Answer Report Error Discuss

136 44922
Q:

Find the next number in the given number series?

2, 19, 0, 21, –2, ?

A) 23 B) 25
C) 27 D) 29
 
Answer & Explanation Answer: A) 23

Explanation:

The given number series 2, 19, 0, 21, –2, ? follows a pattern,

2

2 + 17 = 19

19 - 19 = 0

0 + 21 = 21

21 - 23 = -2

-2 + 25 = 23

 

Hence, the next number in the series is 23.

Report Error

View Answer Report Error Discuss

2 44450
Q:

Find the odd man out in the following number series?

5, 4, 9, 32, 273

A) 4 B) 9
C) 32 D) 273
 
Answer & Explanation Answer: C) 32

Explanation:

The given number series follows 5, 4, 9, 32, 308 pattern that

 

5

5 x 1 - 1 = 4

4 x 3 - 3 = 9

9 x 5 - 5 = 40 (not equals to 32)

40 x 7 - 7 = 273

 

Hence, the odd man in the given number series is 32.

Report Error

View Answer Report Error Discuss

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

4 43179
Q:

Choose the correct html tag to make a text italic.

1. <italic>

2. <it>

3. <i>

4. <il>

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: C) 3

Explanation:

HTML Tag  is used to make a text italic.

Report Error

View Answer Report Error Discuss

32 43099
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 42292
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

52 40893