Searching for "at"

Q:

Integration is primarily concerned with

A) ensuring that the time, scope and cost baselines are consistent with an acceptable quality standard and with the customer’s expectations. B) getting people working together effectively toward common project goals through appropriate training, management and leadership.
C) effectively integrating the processes among the project management process groups that are required to accomplish project objectives with an organization’s defined procedures. D) ensuring that all the tools and techniques of the various planning processes are appropriately scaled to the complexity and risk exposure of the project.
 
Answer & Explanation Answer: C) effectively integrating the processes among the project management process groups that are required to accomplish project objectives with an organization’s defined procedures.

Explanation:

Answers A, B and D all result from effectively integrating the work of the project management process groups. PMBOK [4.0]

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:

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:

what is ratio

Answer ratio means how much part of one thing with respect of other thing.
like if we have 12 pens & 6 boys are there then the ratio is 2:1
Report Error

View answer Workspace Report Error Discuss

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