IT Trainer Questions


Q:

Fill in the blank with suitable preposition in the following sentence.

 

____ the two I prefer tea.

A) From B) In
C) Between D) Among
 
Answer & Explanation Answer: C) Between

Explanation:

Between the two I prefer tea is the correct sentence with suitable preposition.

Report Error

View Answer Report Error Discuss

29 10730
Q:

A source program is the program written in which level language  ?

A) Alpha Numeric B) High-Level
C) Symbolic D) Machine
 
Answer & Explanation Answer: B) High-Level

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming
Exam Prep: Bank Exams
Job Role: Analyst , Database Administration , IT Trainer

14 10720
Q:

What could cause a Fixed Disk Error?

A) Slow Processor Speed B) RAM Space
C) Incorrect CMOS Settings D) None
 
Answer & Explanation Answer: C) Incorrect CMOS Settings

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams , CAT , GATE
Job Role: Analyst , Bank PO , Database Administration , IT Trainer

24 10661
Q:

Properly arranged data is called

A) Information B) File
C) Field D) Words
 
Answer & Explanation Answer: A) Information

Explanation:
Report Error

View Answer Report Error Discuss

20 10581
Q:

If (2a + 3b)/(5a - 3b) = 23/5 , then the value of ba is ?

A) 5 B) 4
C) 20 D) 28
 
Answer & Explanation Answer: C) 20

Explanation:

Given (2a + 3b)/(5a - 3b) = 23/5
=> 10a + 15b = 115a - 69b
=> 105a = 84b => 5a = 4b
a/b = 4/5 => a=4 & b=5
=> bxa = 5x4 = 20.

Report Error

View Answer Report Error Discuss

7 10576
Q:

What one word has the most letters in it?

Answer

ALPHABET is the only has the most letters in it.


 


Alphabet has all the 26 letters from A - Z. 


 


Hence, ALPHABET is one word that has the most letters in it.

Report Error

View answer Workspace Report Error Discuss

10 10535
Q:

Which of the following has the highest frequency?

A) Cosmic rays B) X-rays
C) Radio waves D) Microwaves
 
Answer & Explanation Answer: A) Cosmic rays

Explanation:
Report Error

View Answer Report Error Discuss

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

30 10379
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 10339