Questions

Q:

Which value is reflected in Heracles?

A) taking care of one’s children. B) disobeying the rules to achieve one’s goals.
C) disobeying the gods to follow one’s path. D) taking responsibility for one’s actions.
 
Answer & Explanation Answer: D) taking responsibility for one’s actions.

Explanation:
Report Error

View Answer Report Error Discuss

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

27 13976
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 13972
Q:

'Chauth' was

A) Toll tax imposed by shivaji B) A religious tax imposed by Aurangzeb
C) Land tax levied by Shivaji on neighboring states D) Irrigation tax charged by akbar
 
Answer & Explanation Answer: C) Land tax levied by Shivaji on neighboring states

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture

129 13971
Q:

First Bank to introduce Credit Card in India

A) HSBC Bank B) ICICI Bank
C) State Bank of India D) Central Bank of India
 
Answer & Explanation Answer: D) Central Bank of India

Explanation:

 

        • First Bank to introduce Credit Card in India - Central Bank of India
        • First Bank to introduce ATM  -  HSBC, 1987
        • First Bank to introduce Internet Banking - ICICI Bank

 

 

Report Error

View Answer Report Error Discuss

21 13937
Q:

Select the related word/letters/numbers from the given alternatives:

Words : Sentence :: Paragraph: ?

A) TYPING B) Essay
C) Letters D) Phrase
 
Answer & Explanation Answer: B) Essay

Explanation:
Report Error

View Answer Report Error Discuss

0 13919
Q:

Buddha attained Mahaparinirvana in the republic of the

A) Mallas B) Lichhavis
C) Sakyas D) Palas
 
Answer & Explanation Answer: A) Mallas

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

19 13917
Q:

Can you find the mistake 1 2 3 4 5?

can_you_find_the_mistake_1_2_3_4_51539067038.jpg image

Answer

Here in the above given question, the mistake is "the is reapeated twice" before mistake.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

53 13908
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 13886