Searching for "M"

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:

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:

Tell us about a time when you missed a significant deadline

Answer

Tell us about a time when you missed a deadline.


(or)


Let's discuss a time when you missed a significant deadline.


If you answer something like "You never missed a deadline". Most interviewers will immediately conclude you are not experienced and may also feel you are lying. 


Approach - It is absolutely necessary to accept that you have missed a deadline and give reasons how you resolved and what you learned from it. This will demonstrate your experience.


You could say in one of the first projects earlier in your career you missed an important deadline and made the boss very upset. It was a great learning experience and after doing some introspection, you realized, you could have done better planning, prioritization and communication. Now, you use special tools, processes and methods to address these issues. Now your team, colleagues and management are always up to date so no surprises arise on meeting deadlines. 


Below are few things you may emphasize on in your response...


Effective planning


Procedural Improvements


Better Prioritization


Open communication


Better Status reporting

Report Error

View answer Workspace Report Error Discuss

Q:

How is final different from finally and finalize()?

Answer final is a modifier which can be applied to a class or a method or a variable. final class can't be inherited, final method can't be overridden and final variable can't be changed.

finally is an exception handling code section which gets executed whether an exception is raised or not by the try block code segment.

finalize() is a method of Object class which will be executed by the JVM just before garbage collecting object to give a final chance for resource releasing activity.
Report Error

View answer Workspace Report Error Discuss

Subject: Java