IT Trainer Questions


Q:

The opposite of right is the opposite of

A) Left B) Wrong
C) Give D) Take
 
Answer & Explanation Answer: D) Take

Explanation:

The opposite of right is left. The opposite of left is take. And the opposite of take is give.

 

Hence, the opposite of right is the opposite of take which is left.

Report Error

View Answer Report Error Discuss

34 8650
Q:

India derives its name from

A) The Hindus B) The Aryans
C) Indus River D) Lord Indra
 
Answer & Explanation Answer: C) Indus River

Explanation:

The name India is originally derived from the name of the river Sindhu (Indus River).

Report Error

View Answer Report Error Discuss

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

25 8621
Q:

What comes down but never goes up?

Answer

Rain is what only comes down but never goes up.

Report Error

View answer Workspace Report Error Discuss

10 8519
Q:

Word length of a personal computer is

A) 32 bit B) 16 bit
C) 8 bit D) 4 bit
 
Answer & Explanation Answer: C) 8 bit

Explanation:

Word length refers to the number of bits processed by a computer's CPU in one go. These days, typically 32 bits or 64 bits are used.

Data bus size, instruction size, address size are usually multiples of the word size.

Report Error

View Answer Report Error Discuss

11 8505
Q:

M, K, J, T, R, D and W are seven members of a family. There are two married couples among them belonging to two different generations. Each of them has a different choice of cuisine - Chinese, Continental, Thai, Punjabi, South Indian, Gujarati and Malwani. The grandfather in the family likes Gujarati food. None of the ladies likes Continental or Thai food. T is the son of M, who likes Chinese food. W is J's daughter-in-law and she likes South Indian food. K is grandfather of D, who likes Punjabi food. J is mother of R, who likes Continental food.

Question 1:

How is R related to D?

a) Father b) Brother c) Uncle d) Data inadequate

 

Question 2:

Which of the following group contains one each from the same generations?

a) JRT b) JRW c) MRD  d) MWT

Answer

Answer 1:
c) Uncle
R is Uncle to D.


 


Answer 2:
a) JRT
JRT are one each from the same generations.

Report Error

View answer Workspace Report Error Discuss

7 8443
Q:

19 persons do 19 programs in 19 hours . If they take 15 mins interval and then how much time they need to do 52 programs.

A) 23 hours B) 47 hrs 15 min
C) 52 hrs 15 min D) 22 hrs 15 min
 
Answer & Explanation Answer: C) 52 hrs 15 min

Explanation:

Since they can do 19 programs in 19 hours, Then 52 programs in 52 hours respectively.
And a 15 min interval
Total time they take to do 52 programs is 52 hours 15 minutes.

Report Error

View Answer Report Error Discuss

11 8413
Q:

JavaScript is designed for following purpose

A) To add interactivity to HTML Pages. B) To Execute Query Related to DB on Server
C) To Style HTML Pages D) To Perform Server Side Scripting Opertion
 
Answer & Explanation Answer: A) To add interactivity to HTML Pages.

Explanation:
Report Error

View Answer Report Error Discuss

0 8411
Q:

Explain soundex() and metaphone() ?

Answer

soundex()
The soundex() function calculates the soundex key of a string. A soundex key is a four character long alphanumeric string that represent English pronunciation of a word. he soundex() function can be used for spelling applications.
< ?php
$str = "hello";
echo soundex($str);
? >


metaphone()
The metaphone() function calculates the metaphone key of a string. A metaphone key represents how a string sounds if said by an English speaking person. The metaphone() function can be used for spelling applications.
< ?php
echo metaphone("world");
? >

Report Error

View answer Workspace Report Error Discuss

42 8380