Questions

Q:

The world famous 'Khajuraho' sculptures are located in

A) Gujarat B) Madhya Pradesh
C) Orissa D) Maharashtra
 
Answer & Explanation Answer: B) Madhya Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

58 14242
Q:

How many joining conditions are required to join 4 tables in SQL?

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

Explanation:

To join 'n' tables 'n-1' conditions should be satisfied.

So to join 4 tables 3 conditions should be satisfied.

Report Error

View Answer Report Error Discuss

38 14242
Q:

Name the only US president who also served as the Chief Justice of the US Supreme Court.

 

A) John Quincy Adams B) William Howard Taft
C) Lyndon B. Johnson D) Zachary Taylor
 
Answer & Explanation Answer: B) William Howard Taft

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 14238
Q:

Which film won the Oscar Awards 2017 for the best picture category?

 

A) La La Land   B) The Sales Man  
C) Manchester by the sea D) Moon Light
 
Answer & Explanation Answer: D) Moon Light

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

0 14229
Q:

Why are CPM, GERT, and PERT not considered sufficient to create a project schedule?

A) All three are tools and techniques of schedule development, not the actual schedule B) As mathemetical analysis tools, they simply provide the dates that are posible, and do not consider resource pool limitations
C) They are sufficient. Each calculates early and late start and finish dates for each activity D) They are Monte Carlo techniques used to provide what-if analysis for adverse external factors on a project
 
Answer & Explanation Answer: B) As mathemetical analysis tools, they simply provide the dates that are posible, and do not consider resource pool limitations

Explanation:

Answer A is tempting because it is true by definition, but Answer B is correct because it properly answers the question, in that these techniques do not take into account resource pool constraints. Answer C is incorrect because it provides possible early and late start and finish dates, but not the actual schedules. Answer D is incorrect because none of the the three are simulation techniques. 

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

20 14228
Q:

Lothal a site where dockyard of which of the following civilization were found

A) Indus Valley B) Mesopotamian
C) Egyptian D) Persian
 
Answer & Explanation Answer: A) Indus Valley

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

25 14228
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

16 14221
Q:

Who was the first Indian ruler who had territory outside India ?

A) Kanishka B) Chandra Guptha Maurya
C) Huvishka D) Ashoka
 
Answer & Explanation Answer: A) Kanishka

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

50 14219