Searching for "st"

Q:

Assuming that the phases in a project are concept, development, implementation and termination, which phase typically has the highest degree of uncertainty?

A) Concept B) Development
C) Implementation D) Termination
 
Answer & Explanation Answer: A) Concept

Explanation:

The first phase in a project always has the greatest degree of uncertainty because at this point in time the product is the least well defined. PMBOK, See figure 2-2. [2.1.1]

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

When will you define a method as static?

Answer When a method needs to be accessed even before the creation of the object of the class then we should declare the method as static.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What are the restriction imposed on a static method or a static block of code?

Answer A static method should not refer to instance variables without creating an instance and cannot use "this" operator to refer the instance.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

Does the order of public and static declaration matter in main() method?

Answer No. It doesn't matter but void should always come before main().
Report Error

View answer Workspace Report Error Discuss

Subject: Java