IT Trainer Questions


Q:

Find the next number in the sequence?

28, 16, 28, 76, 274

A) 1233 B) 1243
C) 1256 D) 1276
 
Answer & Explanation Answer: B) 1243

Explanation:

Given number sequence is 28, 16, 28, 76, 274

Here the sequence follows a pattern that

28

28 x 0.5 + 2 = 14 + 2 = 16

16 x 1.5 + 4 = 24 + 4 = 28

28 x 2.5 + 6 = 70 + 6 = 76

76 x 3.5 + 8 = 266 + 8 = 274

274 x 4.5 + 10 = 1233 + 10 = 1243

 

Hence, the next number in the given number sequence is 1243.

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

1 38418
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 37985
Q:

11 P in a CT

Answer

The given letter equation implies that 11 P in a CT means 11 Players in a Cricket Team.

Report Error

View answer Workspace Report Error Discuss

110 36839
Q:

 What is the string contained in s after following lines of code?

StringBuffer s = new StringBuffer(“Hello”); s.deleteCharAt(0);  ?

A) llo B) Hllo
C) ello D) H
 
Answer & Explanation Answer: C) ello

Explanation:

deleteCharAt() method deletes the character at the specified index location and returns the resulting StringBuffer object.

So after deleting the character at 0 ie 'H', the string returns 'ello' as the output.

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Analyst , IT Trainer

3 36510
Q:

Which of the following is a popular programming language for developing multimedia webpages.

A) COBOL B) Java
C) BASIC D) Assembler
 
Answer & Explanation Answer: B) Java

Explanation:

Java is a general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.

 

Which_of_the_following_is_a_popular_programming_language_for_developing_multimedia_webpages1548652333.jpg image


Java is used to develop mobile apps, web apps, desktop apps, games and much more...

Report Error

View Answer Report Error Discuss

158 36257
Q:

Which tag is used to display the numbered list?

 

1) <ol> </ol>    2) <li></li>     3) <ul> </ul>    4) <dl> </dl>

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

Explanation:

Use HTML tag <ol> element to define an ordered list.

Use the HTML type attribute to define the numbering type. Use the HTML <li> element to define a list item. Use the HTML <dl> element to define a description list.

 

Hence, as numbered list come under ordered list tag <ol> tag is used for numbered list.

Report Error

View Answer Report Error Discuss

17 35575
Q:

Find the next number in the given number series?

35, 36, 55, 111, ?

A) 278.5 B) 264.5
C) 212.5 D) 202
 
Answer & Explanation Answer: A) 278.5

Explanation:

The given number series is 35, 36, 55, 111, ?

35

35 x 1 + 1 = 36

36 x 1.5 + 1 = 55

55 x 2 + 1 = 111

111 x 2.5 + 1 = 278.5

 

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

Report Error

View Answer Report Error Discuss

2 35377
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 35370