IT Trainer Questions


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

INI extension refers usually to what kind of file?

A) System file B) Image Color Matching Profile file
C) Hypertext related file D) Image file
 
Answer & Explanation Answer: A) System file

Explanation:

".INI" is an extention for all the configuration files in the system. 

 

Hence, .ini is an extension for System files.

Report Error

View Answer Report Error Discuss

6 7832
Q:

The more you take, the more you leave behind. What is that?

A) Pictures B) Hole
C) Clothes D) Footsteps
 
Answer & Explanation Answer: D) Footsteps

Explanation:

Yes, footsteps are what we take more, the more we leave behind. 

Report Error

View Answer Report Error Discuss

9 7825
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

7 7822
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 7814
Q:

Optimist is to cheerful as Pessimist is to

A) Helpful B) Mean
C) Petty D) Gloomy
 
Answer & Explanation Answer: D) Gloomy

Explanation:

The given words are related in a way that, an optimist is a person whose outlook is cheerful. Similarly, a pessimist is a person whose outlook is gloomy.

 

The answer is not (b) because a pessimist does not have to be mean. Options (c) and (a) are incorrect because neither words describe the outlook of a pessimist.

 

Hence, Optimist is to cheerful as Pessimist is to Gloomy.

Report Error

View Answer Report Error Discuss

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

3 7810
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 7681
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 7627