Questions

Q:

What is the Probability of all cars not clashing each other ?

triangular1504515041.jpg image

A) 1/8 B) 0
C) 1/4 D) 1
 
Answer & Explanation Answer: C) 1/4

Explanation:

Non collision can happen only when all the cars move in same direction.

That is either all cars moving in clockwise direction or all cars moving in anti clockwise direction.
P(all cars not colliding)

= P(all cars moving in the same direction)

= P(all cars moving in clockwise direction)  +  P(all cars moving in anticlockwise direction)

= [p(A --> C) x p(C --> B) x p(B --> A)]  +  [p(A --> B) x p(B --> C) x p(C --> A)]

= [1/2 x 1/2 x 1/2] + [1/2 x 1/2 x 1/2]

= 1/8 + 1/8

= 1/4

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

18 7157
Q:

Kalbaisakhis or Norwesters originate in

A) Chhota Nagpur Plateau B) Karnataka Coast
C) Coromandal Coast D) Malwa plateau
 
Answer & Explanation Answer: A) Chhota Nagpur Plateau

Explanation:

They are carried eastwards to West Bengal and Assam by westerly winds

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

11 7157
Q:

Which of the statements given below are correct?

1. The author of the novel 'Forty Thieves' is Thomas Perry.
2. The author of the novel 'Half of a Yellow Sun' is Jennifer Egan.
3. The author of the novel 'Middlesex' is Chimamanda Ngozi Adichie.

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 7154
Q:

Gold and silver are extracted from their respective ores by _______

A) Smelting B) Roasting
C) Leaching D) Hydro metallurgy
 
Answer & Explanation Answer: D) Hydro metallurgy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

24 7153
Q:

What symbol is used to enter number as text?

A) = B) "
C) ' D) _
 
Answer & Explanation Answer: C) '

Explanation:

Apostrophe(‘) symbol is used before a number to make it a text or label.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

26 7152
Q:

Which Schedule of Indian Constitution was added by 73rd Constitutional Amendment Act?

 

 

A) Eight Schedule B) Ninth Schedule
C) Tenth Schedule D) Eleventh Schedule
 
Answer & Explanation Answer: D) Eleventh Schedule

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 7151
Q:

Central processing unit is combination of

A) Arithmetic and Control unit B) Control and Output unit
C) Control and Storage unit D) Arithmetic logic and input unit
 
Answer & Explanation Answer: A) Arithmetic and Control unit

Explanation:
Report Error

View Answer Report Error Discuss

9 7144
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 7141