Searching for "V"

Q:

Verify Scope is the process of

A) progressively elaborating and documenting the project work that produces the product of the project. B) subdividing the major product deliverables into smaller, more manageable components.
C) obtaining formal acceptance of the project scope by the stakeholders. D) influencing the factors that create scope changes to ensure that changes are agreed upon, determining that a scope change has occurred and managing the changes when and if they occur.
 
Answer & Explanation Answer: C) obtaining formal acceptance of the project scope by the stakeholders.

Explanation:

“Verify Scope is the process of formalizing acceptance of the completed project deliverables. Verifying scope includes reviewing deliverables with the customer or sponsor to ensure that they are completed satisfactorily and obtaining formal acceptance of deliverables by the customer or sponsor.” PMBOK [5.4]

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

Three partners shared the profit in a business in the ratio 4:6:8. They had partnered for 12 months, 8 months and 6 months respectively. What was the ratio of their investments?

A) 4:6:8 B) 4:7:8
C) 4:8:16 D) 4:9:16
 
Answer & Explanation Answer: D) 4:9:16

Explanation:

Let their investments be Rs. x for 12 months, Rs. y for 8 months and Rs. z for 6 months respectively.

Then, 12x : 8y : 6z = 4 : 6 : 8

Now, 12x/8y = 4/6   <=>   9x=4y   <=>   y=9x/4

And, 12x/6z = 4/8   <=>   4x=z     <=>    z=4x

Therefore, x : y: z  =  x : 9x/4: 4x  =  4 : 9 : 16

Report Error

View Answer Report Error Discuss

Filed Under: Partnership

Q:

A statistical method for identifying which factors may influence specific variables of a product or process under development or in production is called

A) cost benefit analysis. B) sensitivity analysis.
C) cost of quality analysis. D) design of experiments.
 
Answer & Explanation Answer: D) design of experiments.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

The project manager meets with the project team to review lessons learned from previous projects. In what activity is the team involved?

A) Performance management B) Scope identification
C) Risk identification D) Project team status meeting
 
Answer & Explanation Answer: C) Risk identification

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

The project manager develops a process improvement plan to encourage continuous process improvement during the life of the project. Which of the following is a valid tool or technique to assist the project manager to assure the success of the process improvement plan?

A) Change control system B) Process analysis
C) Benchmarking D) Configuration management system
 
Answer & Explanation Answer: B) Process analysis

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

An accepted deadline for a project approaches. However, the project manager realizes only 75% percent of the work has been completed. The project manager then issues a change request. What should the change request authorize?

A) Additional resources using the contingency fund B) Escalation approval to use contingency funding
C) Team overtime to meet schedule D) Corrective action based on causes
 
Answer & Explanation Answer: D) Corrective action based on causes

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

Can you give few examples of final classes defined in Java API?

Answer

java.lang.String,  java.lang.Math are final classes.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

I want to print "Hello" even before main() is executed. How will you acheive that?

Answer Print the statement inside a static block of code. Static blocks get executed when the class gets loaded into the memory and even before the creation of an object. Hence it will be executed before the main() method. And it will be executed only once.
Report Error

View answer Workspace Report Error Discuss

Subject: Java