Questions

Q:

Sensitivity analysis is used to

A) identify the risks which have the largest potential impact on the project. B) determine which risks are most troubling to the customer.
C) identify hidden requirements that were not recognized at the outset of the project. D) determine which requirements will add the greatest customer satisfaction for the least effort.
 
Answer & Explanation Answer: A) identify the risks which have the largest potential impact on the project.

Explanation:

“Sensitivity analysis helps to determine which risks have the most potential impact on the project.”

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

1 6755
Q:

Productivity is the combination of

A) efficiency and energy B) efficiency and effectiveness
C) efficiency and attitude D) effectiveness and resources
 
Answer & Explanation Answer: B) efficiency and effectiveness

Explanation:

Productivity is a result of the way that a business operates – the result of the way that its people, business processes, different functional units and suppliers come together to meet the needs and wants of its customers.

Productivity is the combination of intelligent planning and focused efforts and hence, it is a combination of Efficiency and Effectiveness.

Efficiency :


Efficiency is an internal measure of performance for companies that shows how well the company converts inputs into outputs. The more the ratio of outputs to inputs approaches 100 percent, the better the efficiency of the process will be. In simple terms, it is “doing things right” and comes from proper harnessing of time, cost and efforts.

Effectiveness :


Organizational effectiveness is an external measure of performance and indicates how well an organization fulfills the demands of various organizational stakeholders. Simply put, it is “doing the right things."

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 6755
Q:

Select the antonym of

assiduous

 

A) lethargic B) scrupulous
C) diligent D) exacting
 
Answer & Explanation Answer: A) lethargic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 6747
Q:

Which of the following does not contain the material particles

A) alpha - rays B) beta - rays
C) gamma - rays D) anode rays
 
Answer & Explanation Answer: C) gamma - rays

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

16 6747
Q:

The first-ever World Tuna Day (WTD) is observed by the United Nations (UN) on which date  ?

A) May 2, 2017 B) May 1, 2017
C) April 2, 2017 D) May 3, 2017
 
Answer & Explanation Answer: A) May 2, 2017

Explanation:

The United Nations has marked the first World Tuna Day (WTD) on May 2, 2017 to conserve one of the globe’s most popular fish to be caught and eaten and to highlight the vital socio-economic importance of tuna to people around the world. Tuna plays a critical role in sustainable development, food security, economic opportunity, and livelihoods of people around the world. At present more than 80 States have tuna fisheries, thousands of tuna fishing vessels operate in all the oceans and tuna fishery capacity is still growing in the Indian and Pacific Oceans. The Day was designated in December 2016 resolution of the UN General Assembly.

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

4 6744
Q:

Who was the first Indian to be honoured with a lifetime achivement Oscar award

A) Salim Ali B) Pandit Ravi Shankar
C) Satyajit Roy D) Bachchendri pal
 
Answer & Explanation Answer: C) Satyajit Roy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

7 6741
Q:

Translation of the dna sequence AAGCTGGGA would result in

A) a DNA strand with the base sequence TTCGACCCT B) an mRNA strand with the sequence TTCGACCCT
C) a sequence of three amino acids linked by peptide bonds D) an mRNA strand with the sequence UUGCACCCU
 
Answer & Explanation Answer: A) a DNA strand with the base sequence TTCGACCCT

Explanation:

Translation_of_the_dna_sequence_AAGCTGGGA_would_result_in_a_DNA_strand_with_the_base_sequence_TTCGACCCT1557489837.jpg image

Report Error

View Answer Report Error Discuss

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

7 6739
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

6 6738