IT Trainer Questions


Q:

The average weight of 45 passengers in a bus is 52 kg. 5 of them whose average weight is 48 kg leave the bus and other 5 passengers whose average weight is 54 kg join the bus at the same stop. What is the new average weight of the bus?   

A) 54.21 kgs B) 51.07 kgs
C) 52.66 kgs D) 53.45 kgs
 
Answer & Explanation Answer: C) 52.66 kgs

Explanation:

Given total number of passengers in the bus = 45

First average weight of 45 passengers = 52 kgs

Average weight of 5 passengers who leave bus = 48

Average weight of passengers who joined the bus = 54

Therefore, the net average weight of the bus is given by

= 45 x 52 - 5 x 48 + 5 x 5445 = 237045= 1583= 52.66 kgs.

Report Error

View Answer Report Error Discuss

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

31 10805
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 10752
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 10705
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 10660
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 10637
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 10574
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 10501
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 10439