IT Trainer Questions


Q:

Find the next number in the given number series?

96, 95, 87, 78, ?

A) 64 B) 57
C) 29 D) 14
 
Answer & Explanation Answer: D) 14

Explanation:

The given number series is 96, 95, 87, 78, ? 

It follows a pattern that,

9696 - 12 = 9595 - 23 = 95 - 8 = 8787 - 32 = 87 - 9 = 7878 - 43 = 78 - 64 = 14

 

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

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 38929
Q:

Find the next number in the given number sequence?

4, 15, 37, 81, ?

A) 196 B) 169
C) 144 D) 121
 
Answer & Explanation Answer: B) 169

Explanation:

The given number series follows a pattern that, 4, 15, 37, 81, ?

4

4 + 11 = 15

15 + 22 = 37

37 + 44 = 81

81 + 88 = 169

 

Hence, the next number in the sequence is 169.

Report Error

View Answer Report Error Discuss

10 38736
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

26 38468
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

38 38327
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 38282
Q:

Find the wrong number in the given number series?

5, 8, 40, 90, 664

A) 8 B) 40
C) 90 D) 664
 
Answer & Explanation Answer: B) 40

Explanation:

The given number series is 5, 8, 40, 90, 664

5

5 - 1 x 2 = 8

8 - 3 x 4 = 20 (NOT 40)

20 - 5 x 6 = 90

90 - 7 x 8 = 664

Report Error

View Answer Report Error Discuss

6 38087
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 37696
Q:

Find the missing number in the given number series?

5 11 21 44 ? 175

A) 86 B) 78
C) 94 D) 102
 
Answer & Explanation Answer: A) 86

Explanation:

Here the given number series is 5  11  21  44  ?  175

 

Now the given series follows a pattern, that

 

x2 + 1, x2 - 1, x2 + 2, x2 - 2, x2 + 3, x2 - 3,...

 

Then the missing number is x2 - 2

 

= 44 x 2 - 2 = 88 - 2 = 86

 

Hence, the missing number in the number series is 86.

Report Error

View Answer Report Error Discuss

2 37683