Project Management Professional PMP (PMP) — Questions 376450

892 questions total · 12pages · All types, answers revealed

Page 5

Page 6 of 12

Page 7
376
Multi-Selectmedium

A project manager is leading a distributed team with members in three different countries. The team has been struggling with miscommunication and missed deadlines. The project manager wants to improve team performance. Which TWO actions should the project manager take? (Choose two.)

Select 2 answers
A.Increase sprint length to four weeks to give more time for tasks
B.Implement a daily stand-up meeting at a rotating time to accommodate all time zones
C.Create a team charter that defines communication channels, meeting times, and response time expectations
D.Allow team members to communicate directly with stakeholders without involving the project manager
E.Require all team members to work the same hours regardless of time zone
AnswersB, C

Daily stand-ups improve visibility and accountability.

Why this answer

Option B is correct because a daily stand-up meeting at a rotating time ensures that all team members across different time zones have an equal opportunity to participate, fostering regular communication and alignment. This directly addresses miscommunication and missed deadlines by creating a predictable, inclusive cadence for sharing progress and blockers.

Exam trap

The trap here is that candidates may choose Option A (increasing sprint length) thinking it gives more time for tasks, but this violates agile principles of frequent delivery and inspection, and does not address the root cause of miscommunication.

377
Multi-Selectmedium

Your agile project team is experiencing conflicts between two developers regarding coding standards. The conflict is affecting team morale and productivity. As the project manager, which TWO actions should you take?

Select 2 answers
A.Encourage the team to collaboratively define a coding standard that everyone agrees on
B.Remove the developers from the project to avoid further conflict
C.Decide on a coding standard yourself and enforce it
D.Escalate the conflict to the functional managers of the developers
E.Facilitate a meeting with both developers to understand their perspectives
AnswersA, E

Team collaboration fosters consensus and commitment.

Why this answer

Option A is correct because it aligns with the agile principle of self-organizing teams and collective ownership. By encouraging the team to collaboratively define a coding standard, you empower them to reach a consensus that everyone can commit to, which directly addresses the root cause of the conflict and improves morale and productivity. This approach fosters team cohesion and ensures the standard is practical and accepted by all, rather than being imposed externally.

Exam trap

The trap here is that candidates may confuse the project manager's role as a decision-maker with the agile principle of servant leadership, leading them to choose option C (deciding the standard themselves) or option D (escalating to managers), when the correct approach is to facilitate team consensus as in options A and E.

378
MCQmedium

Your project is using a hybrid approach with both predictive and agile elements. The team is working on a critical feature that has a high degree of uncertainty. The product owner wants to use a time-boxed sprint to explore the feature. However, the sponsor insists on a detailed upfront plan. What should the project manager do?

A.Escalate the disagreement to senior management
B.Facilitate a meeting between the sponsor and product owner to agree on a hybrid approach that includes both planning and exploration
C.Follow the sponsor's directive and create a detailed plan
D.Use a time-boxed sprint without informing the sponsor
AnswerB

Facilitating stakeholder alignment is key; a hybrid approach can address both concerns.

Why this answer

Option D is correct because the PM should educate the sponsor on the benefits of agile for uncertain work while respecting governance. A hybrid approach can satisfy both needs.

379
MCQhard

A project manager is leading a global virtual team. A conflict arises between two senior developers from different cultures. One feels the other is not respecting their time zone, while the other accuses the first of micromanaging. What is the best approach to resolve this conflict?

A.Mediate a meeting between the two developers to openly discuss their concerns
B.Escalate the issue to human resources for a formal resolution
C.Assign each developer to separate tasks to minimize interaction
D.Decide on a compromise and inform both parties of the new rules
AnswerA

Facilitating direct communication helps resolve misunderstandings and builds team cohesion.

Why this answer

Option A is correct because, as a project manager leading a global virtual team, the best approach to resolve a conflict between two senior developers from different cultures is to mediate a meeting where they can openly discuss their concerns. This aligns with the PMP's focus on collaborative problem-solving and emotional intelligence, allowing both parties to express their perspectives on time zone respect and micromanagement, leading to a mutually agreed solution. Mediation fosters trust and understanding, which is critical for virtual team cohesion and productivity.

Exam trap

The trap here is that candidates often choose Option D (compromise) because it seems efficient, but the PMP exam emphasizes that collaborative problem-solving (Option A) is superior for long-term team health, especially when cultural differences are involved, as it ensures buy-in and addresses root causes rather than just symptoms.

How to eliminate wrong answers

Option B is wrong because escalating to human resources is a formal, punitive measure that bypasses the project manager's responsibility to resolve team conflicts directly, and it can damage team morale and trust, especially for cultural misunderstandings that are better addressed through dialogue. Option C is wrong because assigning separate tasks minimizes interaction but does not resolve the underlying conflict; it avoids the issue and can lead to siloed work, reduced collaboration, and unresolved resentment that may resurface later. Option D is wrong because deciding on a compromise and informing both parties of new rules is a directive, top-down approach that fails to involve the developers in the solution, which can be perceived as autocratic and may not address the root causes of the conflict, such as cultural differences in communication and work styles.

380
MCQeasy

A project manager notices that two senior developers have conflicting work styles, causing delays. What is the best approach to resolve this?

A.Escalate to the functional manager for reassignment.
B.Ask the team to vote on which style to adopt.
C.Assign them to separate tasks to avoid interaction.
D.Facilitate a meeting to discuss and resolve differences.
AnswerD

Direct conflict resolution is a key PM skill.

Why this answer

Facilitating a meeting to discuss and resolve differences (D) is the best approach because it directly addresses the root cause of the conflict—work style incompatibility—by fostering open communication and collaborative problem-solving. As a project manager, you act as a servant leader, using conflict resolution techniques like 'confronting' or 'problem-solving' to turn the disagreement into a constructive dialogue that aligns the team toward project goals. This approach preserves team cohesion and leverages the developers' expertise without escalating or avoiding the issue.

Exam trap

The trap here is that candidates often choose 'assign them to separate tasks' (C) thinking it's a quick fix to avoid conflict, but the PMP exam emphasizes that avoidance is a temporary solution that fails to resolve the root cause, whereas facilitation aligns with the servant leadership mindset.

How to eliminate wrong answers

Option A is wrong because escalating to the functional manager for reassignment abdicates the project manager's responsibility to resolve team conflicts and can demotivate the developers, as reassignment is a punitive measure that doesn't address the underlying work style differences. Option B is wrong because asking the team to vote on which style to adopt creates a win-lose scenario that may alienate the losing developer, reducing collaboration and potentially causing further delays due to resentment. Option C is wrong because assigning them to separate tasks to avoid interaction only treats the symptom, not the cause, and may lead to siloed work, reduced knowledge sharing, and missed opportunities for synergy on interdependent project deliverables.

381
MCQmedium

Refer to the exhibit. The project team uses Git for version control. The lead developer accidentally committed a bug fix directly to the main branch instead of the feature branch. What is the best course of action to maintain a clean history?

A.Revert the commit on main and do nothing else.
B.Cherry-pick the bug fix commit to the feature branch, then revert the commit on main.
C.Merge main into feature to include the bug fix.
D.Reset main to the commit before the bug fix, then force push.
AnswerB

Cherry-pick applies the fix to feature, revert removes it from main cleanly.

Why this answer

Option B is correct because it preserves a clean Git history by first cherry-picking the bug fix commit from main to the feature branch (ensuring the fix is applied where intended), then reverting the commit on main to remove the accidental change without rewriting history. This avoids merge commits or destructive operations, maintaining a linear and traceable project history.

Exam trap

The trap here is that candidates may confuse 'revert' with 'reset' or assume merging is always safe, overlooking that cherry-picking is the precise tool to move a single commit to another branch without altering the source branch's history.

How to eliminate wrong answers

Option A is wrong because reverting the commit on main and doing nothing else leaves the feature branch without the bug fix, failing to deliver the fix to the correct branch. Option C is wrong because merging main into feature would bring the accidental commit into feature, polluting its history with an unrelated change and creating a messy merge commit. Option D is wrong because resetting main to the commit before the bug fix and force pushing rewrites public history, which can cause synchronization issues for other developers and violates the principle of not altering shared branch history.

382
Multi-Selectmedium

Your agile team is self-organizing, but a team member is consistently missing sprint commitments. The rest of the team is frustrated. As a Scrum Master, which THREE actions should you take?

Select 3 answers
A.Assign simpler tasks to the team member to increase their success rate
B.Coach the team member individually to understand the root cause of the missed commitments
C.Facilitate a team retrospective to discuss the issue and let the team propose solutions
D.Provide the team member with additional training or pair them with a senior developer
E.Remove the team member from the team and replace them with a more capable person
AnswersB, C, D

Coaching helps identify and resolve underlying issues.

Why this answer

Option A addresses root cause. Option C reinforces team ownership. Option E builds skills.

Option B is wrong because the Scrum Master should not assign tasks. Option D is wrong because removing the member is premature.

383
MCQeasy

You are leading a virtual team across multiple time zones. During daily stand-ups, you notice that team members from one region are consistently quiet and not contributing. What should you do FIRST?

A.Implement a new communication tool to encourage engagement
B.Schedule a one-on-one meeting with a few members of that region to ask about their experience and any barriers
C.Send a team-wide email reminding everyone of the importance of participation
D.Assign speaking turns to ensure everyone participates
AnswerB

Seeking feedback privately shows respect and helps identify real obstacles.

Why this answer

Option B is correct because the first step in addressing a participation issue in a virtual team is to understand the root cause through direct, private conversations. This aligns with the PMP principle of 'servant leadership' and the 'People' domain, where you must first investigate barriers (e.g., time zone fatigue, cultural norms, or tool discomfort) before implementing solutions. A one-on-one meeting builds psychological safety and gathers specific feedback, which is essential for an effective corrective action.

Exam trap

The trap here is that candidates often jump to a process or tool-based solution (like Option A or D) instead of first practicing empathetic leadership and root cause analysis, which is the core of the PMP's 'People' domain.

How to eliminate wrong answers

Option A is wrong because implementing a new communication tool without first understanding the underlying barrier (e.g., cultural reluctance, meeting timing, or lack of psychological safety) is a premature solution that may not address the real issue and could introduce additional complexity. Option C is wrong because a team-wide email about participation can be perceived as public shaming, which may further discourage quiet members and damage trust, especially in a cross-cultural virtual team. Option D is wrong because assigning speaking turns forces participation without addressing the root cause, which can create resentment and does not foster genuine engagement or psychological safety.

384
Multi-Selectmedium

A project manager is leading a distributed team where members are in different time zones and have varying levels of experience. The team is struggling with knowledge sharing and collaboration. Which TWO tools or techniques should the project manager consider to improve the situation? (Choose two.)

Select 2 answers
A.Use virtual pair programming sessions for complex tasks
B.Reduce the number of team meetings to minimize disruption
C.Schedule daily 30-minute stand-up meetings at a fixed time
D.Implement a shared online repository for documentation and best practices
E.Assign a single point of contact for all communication
AnswersA, D

Pair programming fosters real-time collaboration and mentoring.

Why this answer

Virtual pair programming sessions are correct because they enable real-time, collaborative problem-solving on complex tasks, directly addressing knowledge sharing and collaboration gaps in a distributed team. This technique fosters active learning and mentorship, which is especially valuable when team members have varying levels of experience and work across different time zones.

Exam trap

The trap here is that candidates may mistake reducing meetings (B) as a way to minimize disruption, but this overlooks the need for structured collaboration in distributed teams, while the fixed-time stand-up (C) seems efficient but fails to address time zone diversity.

385
Multi-Selectmedium

Your IT infrastructure project is being audited for compliance. The auditor finds that several change requests were approved verbally but not documented. The project is in the execution phase. Which TWO actions should you take?

Select 2 answers
A.Update the change control process to require written approval before implementation
B.Reverse the undocumented changes and revert to the original baseline
C.Retroactively document all verbal change requests and obtain signatures
D.Request the team to redo the work to ensure it meets requirements
E.Stop all project work until the audit is resolved
AnswersA, C

Process improvement prevents future non-compliance.

Why this answer

Option A is correct because documented change requests are required for compliance. Option B is correct because process improvement prevents recurrence. Option C is wrong because the changes were already approved.

Option D is wrong because stopping the project is too drastic. Option E is wrong because the issue is documentation, not rework.

386
MCQeasy

A project manager notices that during virtual team meetings, only a few members participate actively while others remain silent. The team is diverse and geographically distributed. What technique should the PM use to encourage participation?

A.Reduce the frequency of meetings to avoid overwhelming the team
B.Send meeting recordings to those who don't speak
C.Call on silent members individually during meetings
D.Create a team charter that includes meeting etiquette and expectations for participation
AnswerD

A team charter sets shared expectations and fosters an inclusive environment.

Why this answer

Option D is correct because a team charter establishes agreed-upon norms for meeting behavior, including expectations for participation, which proactively addresses the root cause of silence in a diverse, distributed team. This aligns with the PMBOK Guide's emphasis on creating a team charter to define ground rules and foster a collaborative environment, especially when virtual communication challenges exist.

Exam trap

The trap here is that candidates may choose Option C (calling on silent members) because it seems like a direct action, but the PMP exam emphasizes collaborative and respectful techniques that build team norms rather than singling out individuals.

How to eliminate wrong answers

Option A is wrong because reducing meeting frequency does not address the underlying issue of participation; it may even reduce opportunities for silent members to engage. Option B is wrong because sending recordings is a passive solution that does not encourage active participation during the meeting and may reinforce the behavior of remaining silent. Option C is wrong because calling on silent members individually can create discomfort or anxiety, especially in a diverse team where cultural or language differences may exist, and it may violate psychological safety.

387
MCQmedium

Your project is 40% complete, and the earned value analysis shows CPI = 0.85 and SPI = 0.90. The project budget is $500,000. What is the Estimate at Completion (EAC) assuming the current cost performance is expected to continue?

A.$625,000
B.$588,235
C.$555,555
D.$500,000
AnswerB

EAC = BAC/CPI = $500,000/0.85 ≈ $588,235.

Why this answer

When current cost performance is expected to continue, EAC = BAC/CPI. BAC = $500,000, CPI = 0.85, so EAC = $500,000 / 0.85 ≈ $588,235.

388
Multi-Selectmedium

During a sprint retrospective, the team identifies that the daily standup meetings are not effective because they are too long and lack focus. Which THREE actions should the Scrum Master take to improve the standup?

Select 3 answers
A.Cancel the standup and replace it with written reports
B.Time-box the standup to 15 minutes and enforce it
C.Have the team stand up during the meeting to discourage long discussions
D.Use a talking stick or rotate facilitators to keep the meeting structured
E.Encourage team members to give detailed status reports
AnswersB, C, D

Time-boxing is a key practice to keep standups short.

Why this answer

To improve daily standups, the Scrum Master should enforce time-boxing, encourage focused updates, and perhaps change the format or location to keep them concise. Assigning a rotating facilitator can also help.

389
Multi-Selecteasy

As an agile project manager, you want to empower the development team to self-organize. Which TWO practices would BEST support self-organization?

Select 2 answers
A.Assign specific tasks to team members based on their expertise
B.Protect the team from external interruptions and scope changes during the sprint
C.Allow the team to estimate their own work and plan the sprint backlog
D.Monitor each team member's hours to ensure productivity
E.Define the technical solution in detail for the team to implement
AnswersB, C

Shielding the team from disruptions allows them to focus and self-organize within the sprint.

Why this answer

Option B is correct because protecting the team from external interruptions and scope changes during the sprint is a core agile practice that enables self-organization. Without this protection, the team cannot maintain focus on their committed work, and external pressures undermine their autonomy to manage their own process. This aligns with the Scrum principle of a stable sprint backlog and the product owner's role in shielding the team.

Exam trap

The trap here is that candidates often confuse 'empowering the team' with 'assigning tasks based on expertise' (Option A), thinking it leverages individual strengths, but this actually undermines the team's collective ownership and cross-functionality.

390
Multi-Selecthard

You are leading a distributed agile team. Team members have expressed that they feel disconnected and unclear about project goals. Which THREE actions should you take to improve team cohesion and alignment?

Select 3 answers
A.Reduce the frequency of team meetings to give more time for work
B.Implement a daily status email from each team member
C.Use video conferencing for all team meetings to enhance personal connection
D.Create a project vision statement and share it with the team
E.Establish clear and visible goals using a task board or similar tool
AnswersC, D, E

Video helps build rapport and reduces feelings of distance.

Why this answer

Option C is correct because video conferencing adds a visual and non-verbal communication layer that significantly improves personal connection in distributed teams. This aligns with agile principles of face-to-face communication and helps reduce the sense of isolation, directly addressing the team's feeling of disconnection.

Exam trap

The trap here is that candidates may think reducing meetings (Option A) or using written status updates (Option B) are efficient ways to save time, but they fail to recognize that in distributed teams, synchronous, rich communication is vital for cohesion and alignment, not a waste of time.

391
MCQhard

During project execution, a key vendor notifies you that they cannot deliver a critical component on time due to a raw material shortage. This component is on the critical path. The vendor suggests using a substitute material that is not yet approved by your quality team. What should the project manager do FIRST?

A.Implement the risk response defined in the risk register
B.Accept the delay and update the project schedule
C.Escalate to the project sponsor and request additional time
D.Immediately terminate the vendor contract and find a new supplier
AnswerA

The risk was identified and a response was planned. The PM should implement that response.

Why this answer

Option B is correct because the risk is already on the risk register with a planned response. The PM should implement the agreed response. Option A is wrong because escalation is not necessary if a response exists.

Option C is wrong because accepting without trying the planned response is premature. Option D is wrong because changing vendors without following the risk response is reactive.

392
MCQmedium

You are managing a software development project using a hybrid approach. During a sprint review, the customer requests a major feature addition that would extend the timeline by two weeks. The team is already working at capacity. What should you do FIRST?

A.Submit a change request through the Integrated Change Control process and assess the impact on scope, schedule, and cost
B.Ask the team to start working on the feature immediately to satisfy the customer
C.Inform the customer that the feature is out of scope and cannot be added
D.Add the feature to the product backlog and schedule it for a future sprint without further analysis
AnswerA

PMI requires all scope changes to go through Integrated Change Control for evaluation and approval.

Why this answer

The correct action is to submit a change request through the Integrated Change Control process. PMI requires formal assessment and approval before implementing any change that impacts scope, schedule, or cost. Proceeding without change control violates the project management plan.

393
MCQmedium

You are the project manager for a marketing campaign project using a hybrid approach. Mid-sprint, the product owner asks the team to add a new feature that increases customer engagement. The team has capacity, but the new feature was not in the approved business case. What should you do first?

A.Ask the sponsor for permission to proceed
B.Allow the team to add the feature since they have capacity
C.Submit a change request to evaluate the impact on the business case and obtain approval
D.Refuse to add the feature because it was not in the business case
AnswerC

Following the change control process ensures alignment with business objectives and stakeholder approval.

Why this answer

Option C is correct because any change that impacts the business case must go through the change control process. Option A bypasses approval, option B is premature without analysis, option D escalates without proper documentation.

394
MCQhard

On a large-scale project, you have a team member who is technically skilled but consistently fails to complete tasks on time, affecting the team's morale. You have had informal conversations about this, but there has been no improvement. What should you do next?

A.Conduct a formal performance review, document the issues, and create a performance improvement plan with clear expectations and timelines
B.Replace the team member with a more reliable resource
C.Ignore the issue as the team member is technically strong
D.Reassign all critical tasks to other team members
AnswerA

A structured approach helps the team member understand expectations and provides support for improvement.

Why this answer

Option D is correct because the PM should use a progressive approach: after informal feedback, engage in a formal performance discussion with a plan. Option A is wrong because immediately replacing the member may be too harsh and could lose valuable skills. Option B is wrong because removing all critical tasks may not help the member improve.

Option C is wrong because ignoring the issue could further damage team morale.

395
MCQeasy

A project manager is using a servant leadership approach. During a sprint, the team is struggling to complete their tasks due to unclear requirements. What should the project manager do?

A.Work with the product owner to clarify the requirements and provide the team with the necessary information
B.Take over the task of clarifying requirements and update the user stories yourself
C.Coach the team to ask better questions during sprint planning
D.Wait until the sprint retrospective to discuss the issue
AnswerA

Removing obstacles is a key servant leadership behavior.

Why this answer

Option B is correct because servant leadership involves removing obstacles for the team. Clarifying requirements removes the impediment. Option A does not help the team directly.

Option C bypasses the team's autonomy. Option D is reactive rather than proactive.

396
Multi-Selecthard

Your project is in the executing phase, and a new regulation is announced that will affect the project's deliverables. The required changes will impact scope, schedule, and budget. Which THREE actions should you take?

Select 3 answers
A.Update the project management plan and other project documents after the change is approved.
B.Submit a change request to the change control board for approval of the necessary modifications.
C.Immediately inform the project team to stop work on affected deliverables.
D.Analyze the impact of the regulation on the project's scope, schedule, and cost.
E.Escalate the issue to the project sponsor for a decision on how to proceed.
AnswersA, B, D

Updating documents is part of the change control process after approval.

Why this answer

When a new regulation arises, the PM should first analyze the impact, then submit a change request to formally propose the changes, and finally update the project management plan and documents after approval. Informing the team immediately is premature without analysis. Escalating to the change control board is part of the process but not the first step.

397
Multi-Selectmedium

Your project is using a hybrid approach with both predictive and agile elements. The team is struggling with the daily standup because some members treat it as a status report for management. Which THREE actions should you take to improve the standup?

Select 3 answers
A.Cancel the standup and replace it with a weekly status meeting
B.Enforce the 15-minute timebox to keep the meeting efficient
C.Coach the team to focus on impediments and collaboration rather than individual status
D.Reiterate that the standup is for the team to coordinate, not for management reporting
E.Ask the product owner to run the standup to keep it focused
AnswersB, C, D

Timeboxing ensures the standup remains brief and effective.

Why this answer

Option A is correct because the standup is for the team, not management. Option B is correct because focusing on impediments and collaboration improves effectiveness. Option D is correct because the timebox keeps the standup concise.

Option C is wrong because the product owner can attend but should not run it. Option E is wrong because canceling the standup is not recommended.

398
Multi-Selecthard

You are managing a large, distributed project using a hybrid methodology. The team is experiencing communication breakdowns and conflict between onshore and offshore members. Which THREE actions should you take to improve team collaboration and performance? (Choose three)

Select 3 answers
A.Establish regular video conference meetings for synchronous collaboration
B.Separate the team into onshore and offshore sub-teams with their own leads
C.Create a team charter with agreed-upon communication norms
D.Increase the frequency of status reporting
E.Celebrate team milestones and individual achievements publicly
AnswersA, C, E

Video calls enhance non-verbal communication and build relationships.

Why this answer

Establishing regular video conference meetings (A) is correct because it enables synchronous, face-to-face communication, which is critical for bridging cultural and time-zone gaps in distributed teams. Video conferencing reduces misunderstandings by allowing non-verbal cues and real-time clarification, directly addressing the communication breakdowns described in the scenario.

Exam trap

The trap here is that candidates may confuse increasing status reporting frequency (D) with improving communication, when in fact it only increases transactional updates without addressing the collaborative and relational breakdowns that cause conflict.

399
MCQeasy

You are the project manager for a software development project using Scrum. During the daily standup, a developer mentions that they are blocked by a dependency on another team's API that is delayed. The developer has already tried contacting the other team but received no response. What should the scrum master do?

A.Add the issue to the risk register and monitor it.
B.Escalate the issue to the other team's manager or the project sponsor to resolve the dependency.
C.Ask the team to work on other tasks until the API is available.
D.Advise the developer to keep trying to contact the other team.
AnswerB

The scrum master should escalate to unblock the team.

Why this answer

The scrum master is responsible for removing impediments. Option B is correct because the scrum master should escalate the issue to remove the blocker for the team.

400
Multi-Selectmedium

Your project is behind schedule due to underestimated task durations. The critical path has been identified. Which TWO schedule compression techniques are MOST appropriate to get the project back on track?

Select 2 answers
A.Critical chain method
B.Resource leveling
C.Fast tracking
D.Crashing
E.Monte Carlo simulation
AnswersC, D

Performing tasks in parallel on the critical path.

Why this answer

Crashing adds resources to critical path tasks; fast-tracking performs tasks in parallel. Both are schedule compression techniques.

401
MCQmedium

Your agile project has been experiencing decreasing velocity over the last three sprints. The team is frustrated and morale is low. The product owner is pressuring for more features. What is the BEST action for the project manager to take?

A.Conduct a retrospective to identify impediments and improvement actions.
B.Ask the team to work overtime to catch up on velocity.
C.Replace the underperforming team members with new resources.
D.Increase the sprint length to give the team more time.
AnswerA

Retrospectives are designed to inspect and adapt the process.

Why this answer

The PM should facilitate a retrospective to identify root causes. Option C is correct because it addresses the issue using agile ceremonies. Option A avoids the problem; Option B adds pressure; Option D is reactive.

402
MCQhard

You are managing a project using a hybrid approach. Midway through, a new regulatory requirement is introduced that will affect the project scope. The change is mandatory and must be implemented. What is the FIRST step?

A.Initiate a change request to formally document the new requirement and assess its impact on scope, schedule, and cost
B.Notify stakeholders of the new requirement and proceed with implementation
C.Instruct the team to incorporate the new requirement immediately due to its mandatory nature
D.Update the risk register to reflect the new regulatory requirement
AnswerA

Follow the change control process even for mandatory changes.

Why this answer

Even mandatory changes should go through the change control process to assess impact. Option A is correct. Option B implements without analysis.

Option C bypasses planning. Option D is premature.

403
MCQmedium

During a sprint review, the customer expresses dissatisfaction with the user interface, stating it does not meet their expectations. The team followed the specifications agreed upon during sprint planning. What should the project manager do NEXT?

A.Log the issue in the issue log and address it in a future sprint
B.Instruct the team to rework the UI immediately to satisfy the customer
C.Explain to the customer that the team adhered to the agreed specifications
D.Schedule a meeting with the customer to review their expectations and discuss potential adjustments
AnswerD

Collaborative approach to align expectations and find a solution.

Why this answer

Understanding the customer's expectations is key. Option B involves the customer in clarifying requirements. Option A assumes the customer is wrong.

Option C changes scope without process. Option D ignores the issue.

404
MCQeasy

A project team is distributed across three time zones. The project manager wants to improve team collaboration and ensure effective communication. Which tool or technique would best help achieve this?

A.Use a shared spreadsheet to track tasks and progress.
B.Implement a virtual collaboration platform with chat, video conferencing, and shared document repositories.
C.Create a project wiki and ask team members to update it regularly.
D.Schedule a weekly status email to all team members.
AnswerB

Provides real-time and asynchronous communication tailored for distributed teams.

Why this answer

Option B is correct because a virtual collaboration platform that integrates chat, video conferencing, and shared document repositories directly addresses the core challenges of distributed teams: real-time interaction, synchronous meetings, and centralized document access. This combination reduces communication latency across time zones and ensures all team members have a single source of truth for project artifacts, which is essential for effective collaboration in a multi-timezone environment.

Exam trap

The trap here is that candidates often choose a single-purpose tool (like a shared spreadsheet or wiki) thinking it is sufficient for collaboration, but the PMP exam emphasizes integrated solutions that address multiple communication modes (synchronous and asynchronous) for distributed teams.

How to eliminate wrong answers

Option A is wrong because a shared spreadsheet lacks real-time communication features and does not support synchronous collaboration or video conferencing, making it insufficient for improving team collaboration across time zones. Option C is wrong because a project wiki is primarily a static documentation tool that requires manual updates and does not provide instant messaging or video conferencing capabilities, failing to address the need for dynamic, real-time interaction. Option D is wrong because a weekly status email is a one-way, asynchronous communication method that does not facilitate interactive discussion, immediate feedback, or collaborative problem-solving, which are critical for distributed teams.

405
MCQmedium

Your project is 40% complete, and the earned value analysis shows CPI = 0.85 and SPI = 0.90. The project sponsor is concerned about the cost overrun. The original budget at completion (BAC) is $1,000,000. What is the Estimate at Completion (EAC) using the typical cost performance index (CPI) assumption?

A.$850,000
B.$1,000,000
C.$1,111,111
D.$1,176,471
AnswerD

EAC = BAC / CPI = $1,000,000 / 0.85 ≈ $1,176,471, assuming current cost performance is typical.

Why this answer

When the current cost performance is considered typical and expected to continue, the EAC is calculated as BAC / CPI = $1,000,000 / 0.85 ≈ $1,176,471. This is the most common formula for EAC when variances are expected to persist.

406
MCQeasy

A team member consistently misses deadlines, causing delays for the rest of the team. You have already spoken to the team member informally, but the behavior continues. What is the BEST next step?

A.Remove the team member from the project
B.Escalate the issue to the team member's functional manager
C.Have a formal meeting with the team member to discuss expectations and consequences
D.Reassign the team member to less critical tasks
AnswerC

A formal conversation helps set clear expectations and document the issue.

Why this answer

The PM should address performance issues formally by documenting the issue and discussing it with the team member, setting clear expectations and consequences. This follows a progressive discipline approach.

407
MCQeasy

During the execution phase of a construction project, you notice that a junior team member is consistently missing deadlines and producing work of lower quality. Other team members have expressed frustration. What is the best approach to address this?

A.Issue a formal warning in writing to document underperformance
B.Immediately reassign the junior member to administrative tasks
C.Schedule a private meeting to discuss performance concerns and offer coaching or additional training
D.Ask other team members to cover the missing deadlines
AnswerC

A supportive approach helps the team member improve and shows commitment to their development.

Why this answer

The PM should first discuss the issue privately with the team member to understand the root cause and offer support, such as training or resources. This aligns with servant leadership.

408
MCQhard

In a large-scale digital transformation project, the executive sponsor has been bypassing you and giving direct instructions to the development team. The team is confused about priorities and feels caught between the sponsor's requests and the project plan. What should the project manager do FIRST?

A.Update the stakeholder engagement plan to include a communication protocol and ask the sponsor to review it
B.Schedule a private meeting with the sponsor to discuss the issue and agree on a proper communication channel
C.Send an email to the sponsor and the team clarifying that all instructions must go through you
D.Advise the team to ignore the sponsor's instructions and follow the project plan
AnswerB

Direct, respectful communication with the sponsor to realign expectations is the best first step.

Why this answer

Option B is correct because the first step in resolving a conflict with a powerful stakeholder like an executive sponsor is to address the issue privately and collaboratively. By scheduling a private meeting, the project manager can discuss the impact of the bypassing behavior, clarify the confusion it causes, and agree on a proper communication channel that respects both the sponsor's authority and the project's governance. This aligns with PMI's principle of engaging stakeholders proactively and using conflict resolution techniques like 'confronting' or 'collaborating' to find a mutually acceptable solution.

Exam trap

The trap here is that candidates often choose Option C (sending a clarifying email) because it seems direct and authoritative, but PMI emphasizes that the first step in stakeholder conflict is always a private, respectful conversation to avoid public confrontation and preserve relationships.

How to eliminate wrong answers

Option A is wrong because updating the stakeholder engagement plan and asking the sponsor to review it is a reactive, documentation-first approach that does not address the immediate interpersonal and priority confusion; it also risks the sponsor feeling dictated to rather than engaged. Option C is wrong because sending an email to the sponsor and team clarifying that all instructions must go through you is confrontational and escalates the issue publicly, potentially damaging the relationship with the sponsor and undermining the team's trust. Option D is wrong because advising the team to ignore the sponsor's instructions is insubordinate and ignores the sponsor's legitimate authority, which could lead to political fallout and further confusion.

409
Multi-Selectmedium

You are leading a project with a diverse team including members from different cultures and backgrounds. Which THREE actions should you take to promote an inclusive team environment?

Select 3 answers
A.Establish a team charter that includes norms for respectful communication and conflict resolution
B.Celebrate different cultural holidays and encourage sharing of traditions
C.Use inclusive language and avoid assumptions about cultural norms
D.Conduct all meetings in English only to avoid misunderstandings
E.Encourage team members to adopt the dominant culture's practices to ensure consistency
AnswersA, B, C

A team charter sets clear expectations for inclusive behavior and conflict resolution.

Why this answer

Options A, C, and E are correct because establishing a team charter with norms for respect, using inclusive language, and celebrating differences all foster inclusion. Option B is incorrect because ignoring cultural differences reduces collaboration. Option D is incorrect because focusing communication in one language may exclude non-native speakers.

410
MCQhard

Your agile team has been self-organizing and performing well, but during the last two retrospectives, the team has raised concerns about the product owner not providing clear acceptance criteria for user stories. As the project manager, what is the most effective way to address this?

A.Coach the product owner on writing effective acceptance criteria and encourage the team to raise concerns during backlog refinement
B.Escalate the issue to the project sponsor
C.Write the acceptance criteria yourself to ensure clarity
D.Add a task to the sprint backlog for the team to clarify acceptance criteria with the product owner
AnswerA

Coaching and open communication address the root cause while maintaining roles.

Why this answer

The PM should facilitate a conversation between the team and the product owner to improve the definition of ready. This empowers the team and improves collaboration.

411
MCQmedium

A risk event that was identified and included in the risk register has occurred. The impact on the project schedule is moderate. What should the project manager do first?

A.Ignore the event since the impact is only moderate
B.Implement the agreed-upon risk response from the risk register
C.Escalate the issue to the project sponsor for guidance
D.Develop a new risk response immediately
AnswerB

The risk management process requires executing the planned response when a risk occurs.

Why this answer

When a risk event that was identified and included in the risk register occurs, the project manager should first implement the agreed-upon risk response that was already planned and documented. This is because the risk response plan was developed during risk planning and approved by stakeholders, making it the immediate and correct action to take. Implementing the pre-agreed response ensures a timely, consistent, and controlled reaction to the risk, minimizing disruption to the project schedule.

Exam trap

The trap here is that candidates often think a moderate impact means they can ignore the risk or that they need to escalate or create a new response, but the PMP exam expects you to follow the established risk response plan first, regardless of impact level.

How to eliminate wrong answers

Option A is wrong because ignoring a risk event, even with a moderate impact, violates the proactive risk management principles of the PMBOK Guide and can lead to cumulative negative effects on the project. Option C is wrong because escalating to the project sponsor for guidance is unnecessary when a risk response has already been agreed upon and documented in the risk register; escalation is reserved for risks outside the project manager's authority or those requiring sponsor-level decisions. Option D is wrong because developing a new risk response immediately bypasses the established risk response plan and may cause confusion, rework, or delays when a valid response already exists.

412
MCQhard

Your project is using a hybrid approach. The business case is no longer valid due to a change in market conditions, but the sponsor insists on continuing because significant resources have already been spent. What is the best action?

A.Present the updated business case and recommend a formal decision review with the steering committee
B.Increase the project budget to improve the business case
C.Stop the project immediately to prevent further losses
D.Continue the project as planned to avoid wasting invested resources
AnswerA

The PM should provide objective information and let governance decide.

Why this answer

The project manager should present the updated business case and recommend a formal review to decide whether to continue or terminate. Sunk costs should not drive decisions.

413
Multi-Selecteasy

During a sprint retrospective, the team identifies that the daily standup meetings are taking too long and not focusing on impediments. Which TWO actions would help improve the effectiveness of the daily standup?

Select 2 answers
A.Time-box the standup to 15 minutes and use a talking stick.
B.Hold the standup without the scrum master to save time.
C.Extend the standup to 30 minutes to allow more detailed discussion.
D.Focus each team member's update on progress, plan, and impediments.
E.Replace the standup with a written status report.
AnswersA, D

Time-boxing ensures brevity, and a talking stick can keep the discussion structured.

Why this answer

Effective daily standups are time-boxed (e.g., 15 minutes) and focus on progress, plans, and impediments. Using a visual board helps keep the discussion focused.

414
Multi-Selectmedium

A project team member from a different cultural background tends to avoid direct confrontation during disagreements, which frustrates other team members who prefer direct communication. As the project manager, which TWO actions should you take to improve team dynamics?

Select 2 answers
A.Introduce anonymous feedback tools for sensitive issues.
B.Tell the frustrated team members to accept the differences.
C.Require all team members to adopt direct communication styles.
D.Facilitate a team session on cultural diversity and communication preferences.
E.Report the issue to human resources.
AnswersA, D

Anonymous tools can provide a safe space for expression.

Why this answer

Option A is correct because anonymous feedback tools allow team members to express concerns about cultural or communication differences without the discomfort of direct confrontation, which aligns with the PMI principle of fostering a respectful and inclusive team environment. This approach respects the cultural preference for indirect communication while still surfacing issues that need resolution. Option D is correct because facilitating a team session on cultural diversity and communication preferences directly addresses the root cause of the conflict by educating the team and promoting mutual understanding, which is a proactive leadership action under the 'People' domain.

Exam trap

The trap here is that candidates may choose Option B or C because they seem like quick fixes, but the PMP exam tests the ability to apply inclusive leadership techniques (like education and safe feedback mechanisms) rather than imposing a single style or ignoring the conflict.

415
MCQeasy

A new regulation impacting your construction project was announced. The compliance team says the project must incorporate additional safety inspections, which will require extra resources and extend the schedule. What should you do FIRST?

A.Escalate the issue to the project sponsor for decision
B.Submit a change request to the change control board to assess the impact and obtain approval
C.Instruct the team to start implementing the additional inspections immediately
D.Ignore the regulation since it was not part of the original project scope
AnswerB

Formal change control is required for any changes impacting scope, schedule, or cost.

Why this answer

Option A is correct because any change to the project baseline must go through the Integrated Change Control process. Option B is wrong because ignoring the regulation is not an option. Option C is wrong because the PM should not implement changes without approval.

Option D is wrong because the PM should first assess impact before escalating.

416
MCQeasy

A new regulatory requirement has been discovered that affects your project's deliverables. The project is halfway through its schedule. What should the project manager do FIRST?

A.Ignore the requirement because the project is already underway
B.Inform the team to start incorporating the new requirement immediately
C.Update the project management plan directly to include the change
D.Submit a change request to assess the impact on scope, schedule, and cost
AnswerD

The change control process is the correct way to handle new requirements.

Why this answer

D is correct because the PMBOK Guide mandates that any change, including a new regulatory requirement, must first be processed through a formal change request to evaluate its impact on scope, schedule, and cost. Since the project is already halfway through its schedule, the project manager must follow the integrated change control process to ensure the change is assessed before any action is taken. This prevents unauthorized changes that could disrupt project baselines.

Exam trap

The trap here is that candidates may think a regulatory requirement is mandatory and must be implemented immediately, but the PMP exam tests that even mandatory changes must go through the formal change control process to assess and manage impacts properly.

How to eliminate wrong answers

Option A is wrong because ignoring a regulatory requirement exposes the project to legal and compliance risks, which can lead to project failure or penalties. Option B is wrong because instructing the team to immediately incorporate the requirement bypasses the formal change control process, potentially causing scope creep and unapproved budget or schedule impacts. Option C is wrong because updating the project management plan directly without a change request violates the principle of maintaining baselines and requires a formal review and approval by the change control board (CCB).

417
Drag & Dropmedium

Arrange the steps for developing a project team.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order

Why this order

Team development: identify needs, acquire, build, set rules, and train.

418
MCQhard

During a hybrid project, the project sponsor asks you to skip the testing phase in the next release to save time and meet an aggressive market deadline. The team is concerned about quality risks. What should you do FIRST?

A.Discuss the risks of skipping testing with the sponsor and propose a compromise, such as risk-based testing
B.Tell the team to add extra testing in the next sprint to compensate
C.Escalate the issue to the PMO or steering committee for a decision
D.Refuse the sponsor's request and insist on following the original plan
AnswerA

The PM should communicate risks and negotiate a solution that balances schedule and quality.

Why this answer

Option A is correct because, as a project manager, your first responsibility is to address the sponsor's request directly by communicating the quality risks and negotiating a balanced solution. Risk-based testing allows you to prioritize critical test cases, reducing overall testing time while still mitigating the highest-priority quality risks, which aligns with the hybrid project's need for both agility and governance.

Exam trap

The trap here is that candidates often choose escalation (Option C) or refusal (Option D) because they assume the sponsor's request is unethical or must be overruled, but the PMP exam emphasizes proactive stakeholder communication and negotiation as the first step, not avoidance or confrontation.

How to eliminate wrong answers

Option B is wrong because it unilaterally instructs the team to add extra testing without addressing the sponsor's market deadline concern, which could lead to scope creep and schedule overruns without stakeholder buy-in. Option C is wrong because escalating to the PMO or steering committee bypasses the direct communication with the sponsor, which is the first step in managing stakeholder expectations and resolving conflicts at the lowest appropriate level. Option D is wrong because outright refusal ignores the sponsor's legitimate business need for a faster release and fails to explore a compromise that could satisfy both time and quality constraints.

419
MCQmedium

A company is implementing a new customer relationship management (CRM) system. The project manager wants to ensure that the project delivers value aligned with the organization's strategic goals. Which document should the project manager reference to confirm the alignment?

A.Project management plan
B.Scope statement
C.Business case
D.Project charter
AnswerC

The business case justifies the project and shows alignment with strategic goals.

Why this answer

The business case documents the justification for the project, including alignment with organizational strategy, expected benefits, and ROI. For a CRM implementation, the business case would confirm that the system supports strategic goals like improving customer retention or sales efficiency, making it the correct reference for value alignment.

Exam trap

The trap here is that candidates often confuse the project charter (which authorizes the project) with the business case (which justifies it), leading them to select the charter when the question specifically asks about confirming strategic alignment and value delivery.

How to eliminate wrong answers

Option A is wrong because the project management plan describes how the project will be executed, monitored, and controlled, but it does not justify why the project aligns with strategic goals. Option B is wrong because the scope statement defines what is included and excluded in the project deliverables, not the strategic rationale or value proposition. Option D is wrong because the project charter authorizes the project and assigns the project manager, but it typically references the business case for strategic alignment rather than providing that justification itself.

420
Multi-Selecthard

You are managing a pharmaceutical research project using a predictive approach. A new regulation requires additional clinical trials that will extend the project by 6 months. The sponsor wants to know how this affects the business case. Which THREE documents should you review to provide an informed response?

Select 3 answers
A.Risk register
B.Business case
C.Stakeholder register
D.Work breakdown structure dictionary
E.Project management plan (schedule and cost baselines)
AnswersA, B, E

The risk register may contain assumptions about regulations and their impact.

Why this answer

Option A is correct because the business case justifies the project and includes financial analysis. Option B is correct because the project management plan contains the schedule and cost baseline. Option D is correct because the risk register contains assumptions and constraints that may be affected.

Option C is wrong because the WBS is a deliverable breakdown, not for impact analysis. Option E is wrong because the stakeholder register does not contain financial information.

421
Multi-Selectmedium

Your project has a diverse team with members from different cultural backgrounds. A conflict arises because some team members feel their ideas are not being heard during meetings. Which THREE actions should you take to foster inclusion and collaboration?

Select 3 answers
A.Require all team members to communicate in the same direct style
B.Provide training on cultural diversity and inclusive communication
C.Use anonymous idea submission tools for brainstorming sessions
D.Implement a round-robin technique during meetings to ensure everyone has a chance to speak
E.Tell the team that conflicts are normal and they should work it out themselves
AnswersB, C, D

Training raises awareness and equips the team with inclusive practices.

Why this answer

Option A ensures all voices are heard. Option C provides a less intimidating way to contribute. Option E builds cultural awareness.

Option B is wrong because imposing a single communication style may not respect diversity. Option D is wrong because ignoring the issue is not proactive.

422
Multi-Selectmedium

An executive stakeholder has been bypassing you and directly assigning tasks to team members. The team is confused about priorities and some tasks conflict with the project plan. Which THREE actions should you take?

Select 3 answers
A.Publicly remind the executive during a team meeting to follow the communication plan
B.Schedule a private meeting with the executive to discuss the impact of bypassing the project manager
C.Review and reinforce the project communication plan with all stakeholders
D.Ignore the situation and let the team sort out priorities
E.Clarify roles and responsibilities with the team, emphasizing that all task assignments should come through the project manager
AnswersB, C, E

Direct, respectful communication resolves the issue.

Why this answer

Option A addresses the direct communication issue. Option C clarifies roles. Option E reinforces the communication plan.

Option B is wrong because confronting the executive publicly may damage relationships. Option D is wrong because ignoring is not proactive.

423
Multi-Selectmedium

You are leading a virtual team across multiple time zones. Team members report feeling disconnected and communication is becoming less effective. Which TWO actions should you take to improve team cohesion and collaboration?

Select 2 answers
A.Create a team charter that defines communication norms, meeting times, and preferred collaboration tools
B.Schedule regular virtual team-building activities and informal coffee chats
C.Encourage team members to use instant messaging for all communication
D.Increase the frequency of status reports to ensure everyone is updated
E.Require all team members to work the same hours regardless of time zone
AnswersA, B

A team charter sets clear expectations and helps align the team.

Why this answer

Option A is correct because a team charter establishes clear communication norms, meeting times, and collaboration tools, which directly addresses the root cause of disconnection in a virtual team. By defining these expectations upfront, the charter reduces ambiguity and ensures all members are aligned on how and when to communicate, fostering cohesion. This aligns with the PMBOK Guide's emphasis on creating a team charter to set ground rules and improve team performance.

Exam trap

The trap here is that candidates may confuse increasing communication frequency (Option D) with improving collaboration, or assume that forcing synchronous work (Option E) solves disconnection, when the real solution is structured norms and intentional relationship-building (Options A and B).

424
MCQeasy

Your project is running 15% over budget at the midpoint. The cost variance is due to higher-than-expected material costs. What should you do?

A.Perform a variance analysis, update the cost forecast, and consider corrective actions such as finding cost savings
B.Reduce the project scope to bring costs back in line
C.Continue as planned since the project is only 15% over budget
D.Request additional funding from the sponsor immediately
AnswerA

Analyzing the variance and adjusting the forecast is a standard cost management practice.

Why this answer

Option D is correct because the PM must analyze the variance and forecast the impact before taking action. Option A is wrong because reducing scope without proper analysis may impact project objectives. Option B is wrong because asking for more budget without understanding the root cause is not justified.

Option C is wrong because ignoring the variance could lead to further overruns.

425
MCQeasy

During a project's execution phase, the project manager notices that two senior team members are in frequent conflict over technical approaches, causing delays. What is the BEST course of action for the project manager?

A.Escalate the issue to the sponsor without involving the team members.
B.Immediately reassign one of the team members to another project.
C.Ignore the conflict and hope it resolves on its own.
D.Facilitate a meeting between the two team members to discuss and resolve the conflict.
AnswerD

Direct, collaborative conflict resolution is best practice.

Why this answer

Option D is correct because the project manager's role includes facilitating conflict resolution among team members to maintain team cohesion and project progress. By mediating a meeting, the PM addresses the root cause of the delays—technical disagreement—while empowering the team to find a mutually acceptable solution, which aligns with the PMP's emphasis on servant leadership and collaborative problem-solving.

Exam trap

The trap here is that candidates may choose to escalate (Option A) or reassign (Option B) because they mistakenly believe the PM should avoid direct involvement in technical disputes, but the PMP exam emphasizes that the PM is responsible for resolving team conflicts through facilitation, not avoidance or unilateral action.

How to eliminate wrong answers

Option A is wrong because escalating to the sponsor bypasses the team's responsibility to resolve their own conflict and undermines the project manager's authority to manage the team. Option B is wrong because immediately reassigning a team member is a drastic, punitive action that does not address the underlying technical disagreement and can disrupt project continuity. Option C is wrong because ignoring the conflict allows it to fester, leading to further delays and potential team dysfunction, which violates the project manager's duty to proactively manage issues.

426
MCQeasy

A project manager notices that a team member consistently submits deliverables late. The project manager suspects the team member is overburdened. What should the project manager do first?

A.Reassign the tasks to another team member immediately.
B.Reprimand the team member in the next team meeting as a warning.
C.Schedule a one-on-one meeting to discuss workload and any challenges.
D.Issue a formal written warning about performance.
AnswerC

Private discussion to understand and help.

Why this answer

Option C is correct because the first step in addressing a potential performance issue is to gather information through a private, respectful conversation. The project manager should schedule a one-on-one meeting to understand the team member's workload and challenges before taking any corrective action, aligning with the PMI's emphasis on servant leadership and emotional intelligence.

Exam trap

The trap here is that candidates often jump to a corrective or punitive action (like reassigning tasks or issuing warnings) instead of first investigating the root cause through a private, supportive conversation, which is the hallmark of effective servant leadership in the PMP framework.

How to eliminate wrong answers

Option A is wrong because immediately reassigning tasks without understanding the root cause can demotivate the team member and fail to address the underlying issue, potentially leading to recurrence. Option B is wrong because reprimanding the team member in a public meeting violates the principle of 'praise in public, criticize in private' and can damage trust and morale. Option D is wrong because issuing a formal written warning is a punitive escalation that should only occur after informal coaching and documented attempts to resolve the issue have failed.

427
MCQeasy

During a sprint retrospective, the team identifies that the daily standups are too long and not adding value. They suggest implementing a timebox of 15 minutes and a strict 'three questions' format. What should the scrum master do?

A.Support the team's decision and help enforce the new format in future standups
B.Escalate to the product owner for approval
C.Overrule the suggestion because the scrum master is responsible for facilitating standups
D.Ignore the suggestion because the team has already discussed it and no action is needed
AnswerA

The scrum master serves the team by enabling their improvements.

Why this answer

Option A is correct because the scrum master should support the team's self-improvement. Option B is wrong because it overrides the team's agreement. Option C is wrong because the issue is already discussed.

Option D is wrong because the retrospective is the right place.

428
MCQmedium

You are managing a construction project using a traditional approach. The sponsor asks you to skip the quality inspection phase to save two weeks and meet an aggressive deadline. What should you do FIRST?

A.Agree to skip the inspections to satisfy the sponsor's request
B.Refuse outright because quality cannot be compromised
C.Explain the risks of skipping quality inspections and discuss alternatives to meet the deadline
D.Proceed with inspections but report that they were completed
AnswerC

Communicating risks and collaborating on solutions is the correct approach.

Why this answer

Option C is correct because, as a project manager, your first responsibility is to address the sponsor's request professionally by communicating the risks of skipping quality inspections—such as potential rework, safety failures, and cost overruns—and then collaboratively exploring alternatives (e.g., parallel testing, reduced sampling) to meet the deadline without compromising quality. This aligns with the PMP's emphasis on stakeholder engagement and proactive risk management, not blind compliance or refusal.

Exam trap

The trap here is that candidates may choose Option B (refuse outright) because they think it demonstrates strong ethical stance, but the PMP exam expects you to first analyze and communicate risks before making a decision, not to shut down stakeholder requests without dialogue.

How to eliminate wrong answers

Option A is wrong because agreeing to skip quality inspections violates the project's quality management plan and could lead to defects, rework, and safety hazards, ultimately jeopardizing the project's success and the PM's ethical duty. Option B is wrong because outright refusal without explanation or discussion of alternatives is confrontational and fails to engage the sponsor constructively, which is not the 'first' action a PM should take per PMI's stakeholder management principles. Option D is wrong because proceeding with inspections but falsely reporting them as completed is unethical, fraudulent, and violates the PMI Code of Ethics and Professional Conduct, risking severe consequences.

429
MCQmedium

You are managing a project to build a new mobile application. An executive stakeholder has been bypassing you and giving direct instructions to team members, causing rework and confusion. What should you do first?

A.Send an email to all stakeholders reminding them to communicate through the project manager.
B.Update the communications management plan to include stricter protocols.
C.Escalate the issue to the project sponsor to intervene.
D.Schedule a meeting with the executive stakeholder to discuss the importance of following the communication plan.
AnswerD

Direct, private communication to realign expectations is the recommended approach.

Why this answer

The PM should address the issue directly with the stakeholder to clarify roles and communication protocols. This is a stakeholder management and communication issue that requires a proactive conversation.

430
MCQmedium

Your construction project is experiencing resource levelling issues because a key piece of equipment is shared between two critical path activities. What is the best approach to resolve this?

A.Rent additional equipment to run both activities in parallel
B.Ask the team to work overtime to complete one activity faster
C.Remove one activity from the critical path by re-sequencing
D.Delay one of the activities until the equipment is available, which may extend the project schedule
AnswerA

Adding resources (renting equipment) is a common resource levelling technique that can keep the project on schedule.

Why this answer

Resource levelling can be resolved by adjusting the schedule or adding resources. The PM should evaluate options and communicate with stakeholders.

431
Multi-Selecthard

You are managing a complex IT project with multiple vendors. A key vendor is failing to meet contractual milestones, which is impacting the critical path. Which THREE actions should you take to address this situation? (Choose three.)

Select 3 answers
A.Escalate the issue to the vendor's management and your project sponsor.
B.Immediately terminate the contract and find a new vendor.
C.Work with the vendor to develop a recovery plan and provide support if needed.
D.Accept the delay and adjust the project schedule accordingly.
E.Review the contract and communicate the non-compliance to the vendor, invoking penalty clauses if applicable.
AnswersA, C, E

Escalation can bring attention and resources to resolve the issue.

Why this answer

Option A is a proactive step to enforce contract terms. Option C involves working with the vendor to resolve issues. Option E is a typical response to escalate if vendor performance does not improve.

Option B is incorrect because accepting failure without action is passive. Option D is incorrect because terminating the contract may cause further delays; it should be a last resort.

432
Multi-Selecthard

Your project is 50% complete, and you realize it is 15% over budget due to unforeseen material cost increases. The sponsor is concerned about the budget variance. Which TWO actions should you take?

Select 2 answers
A.Request additional budget from the sponsor immediately
B.Present the variance and your corrective action plan to the sponsor
C.Use management reserve without informing the sponsor
D.Reduce the project scope to bring costs back in line
E.Review the cost baseline and calculate the estimate at completion (EAC) to forecast the final cost
AnswersB, E

Transparency and proactive communication are key.

Why this answer

Option A is correct: reviewing the cost baseline and EAC is the first step. Option E is correct: communicating with the sponsor transparently. Option B is wrong because reducing scope without change control is not allowed.

Option C is wrong because requesting more funds without analysis is premature. Option D is wrong because hiding the variance is unethical.

433
MCQeasy

A project manager is working on a predictive project. A team member identifies a risk that was not previously identified. The risk has a low probability but high impact. What should the PM do FIRST?

A.Add the risk to the risk register and assess its impact
B.Escalate the risk to the project sponsor
C.Accept the risk because it has low probability
D.Implement a contingency plan immediately
AnswerA

Recording the risk is the first step; then the PM can plan responses.

Why this answer

Per PMI, any new risk should be documented in the risk register, and then the PM should plan a response. The first step is to add it to the register.

434
MCQhard

In an agile project, the product owner frequently changes priorities within a sprint, causing the team to lose focus and velocity to drop. What should the project manager do first?

A.Ask the team to accommodate the changes and work overtime to meet the original commitment
B.Facilitate a retrospective where the team can discuss the impact of changing priorities and agree on a process
C.Escalate to the project sponsor that the product owner is interfering with the team
D.Tell the product owner that scope changes are not allowed during a sprint
AnswerB

The team and product owner can collaboratively find a solution that respects both agility and stability.

Why this answer

Option B is correct because the retrospective is the appropriate forum for the team to raise process issues. Option A is wrong because the PM should not unilaterally restrict the product owner. Option C is wrong because involving the sponsor may be premature.

Option D is wrong because it violates the sprint commitment concept.

435
MCQmedium

You are managing a virtual team where members are in different time zones. Some team members feel left out of decision-making because meetings are scheduled at times convenient for the majority. What should you do?

A.Schedule all meetings during the time zone of the project manager
B.Record meetings and ask those who cannot attend to comment later
C.Use asynchronous communication tools for all decisions
D.Rotate meeting times to accommodate different time zones periodically
AnswerD

Rotating times distributes inconvenience fairly and allows all to participate.

Why this answer

Option D is correct because rotating meeting times periodically ensures equitable access to synchronous decision-making for all team members, directly addressing the core issue of inclusion in a virtual team with diverse time zones. This approach aligns with the PMP's emphasis on servant leadership and stakeholder engagement by proactively mitigating the negative impact of time zone differences on team cohesion and participation.

Exam trap

The trap here is that candidates often choose Option B (recording meetings) because it seems like a fair compromise, but it fails to address the core issue of real-time participation and decision-making influence, which is a key aspect of team motivation and inclusion in the PMP framework.

How to eliminate wrong answers

Option A is wrong because scheduling all meetings in the project manager's time zone centralizes convenience and exacerbates the exclusion of team members in other zones, violating the principle of equitable stakeholder engagement. Option B is wrong because recording meetings for later comment is a passive, asynchronous approach that excludes affected members from real-time discussion and influence, which can lead to decisions being made without their input and reduce their sense of ownership. Option C is wrong because using asynchronous communication tools for all decisions eliminates the benefits of synchronous collaboration, such as immediate feedback and dynamic problem-solving, which can slow down decision-making and reduce team synergy.

436
Multi-Selectmedium

You are managing a virtual team where several members have expressed feeling isolated and disconnected from the project goals. Which TWO actions would BEST improve team cohesion and alignment?

Select 2 answers
A.Increase the frequency of status meetings
B.Schedule regular virtual team-building activities
C.Establish a rotating meeting facilitator role
D.Create a shared project vision and team charter
E.Implement a formal performance review system
AnswersB, D

Team-building activities help build relationships in a virtual environment.

Why this answer

Option B is correct because regular virtual team-building activities directly address feelings of isolation by fostering interpersonal connections and trust among remote team members. Option D is correct because creating a shared project vision and team charter aligns the team around common goals, expectations, and values, which counteracts disconnection from project objectives. Together, these actions improve both social cohesion and goal alignment, which are critical for virtual team success.

Exam trap

The trap here is that candidates often mistake process-oriented actions (like more meetings or rotating roles) for people-oriented solutions, failing to recognize that isolation requires social bonding and alignment requires a shared vision, not just procedural changes.

437
Multi-Selecteasy

You are managing a project that is currently in the execution phase. A risk event that was identified and included in the risk register has occurred. The planned response is to mitigate the risk. Which TWO documents should you update to reflect the occurrence and response? (Choose two.)

Select 2 answers
A.Stakeholder engagement plan
B.Risk register
C.Lessons learned register
D.Project schedule
E.Cost baseline
AnswersB, C

The risk register is updated with the actual risk event and response.

Why this answer

Options A and D are correct. The risk register is updated to log the occurrence and response actions. The lessons learned register captures knowledge for future projects.

Option B is updated only if the risk response affects the schedule. Option C is updated if the response impacts the budget. Option E is not a standard PMI document.

438
MCQmedium

You are managing a project that is currently in the execution phase. The project has a cost baseline of $500,000. At the end of month 3, the actual cost is $150,000 and the earned value is $120,000. The project manager calculates the cost variance (CV) and schedule variance (SV). What do the results indicate?

A.The project is over budget and ahead of schedule.
B.The project is under budget and ahead of schedule.
C.The project is under budget and behind schedule.
D.The project is over budget and behind schedule.
AnswerD

CV negative indicates over budget; typically, if earned value is less than planned value, the project is behind schedule. Given typical scenario, this is the most likely.

Why this answer

CV = EV - AC = $120,000 - $150,000 = -$30,000 (over budget). SV = EV - PV. PV is not given, but we can infer that if EV is $120,000 and the project is behind schedule, PV would be higher.

But without PV, we cannot compute SV. However, the question expects to know that CV is negative (over budget). Option D is correct.

439
MCQhard

Your project is in the middle of execution when a key vendor informs you that they will be unable to deliver a critical component on time due to a raw material shortage. The component is on the critical path. The risk was identified and logged in the risk register with a mitigation plan. What should you do FIRST?

A.Implement the contingency plan documented in the risk register
B.Ask the vendor to expedite the delivery at no extra cost
C.Immediately source an alternative vendor without formal approval
D.Notify the sponsor and request a schedule extension
AnswerA

The risk register contains pre-approved response plans; implementing it is the correct first step.

Why this answer

The PM should implement the agreed-upon contingency plan as per the risk response strategy. This is proactive and follows the plan.

440
MCQeasy

A new regulatory requirement has been introduced that affects your project's deliverables. The requirement must be implemented within the current timeline. What should the project manager do first?

A.Direct the team to incorporate the requirement immediately to avoid non-compliance
B.Ignore the requirement since the project is already underway
C.Assess the impact on the project and submit a change request through change control
D.Update the project management plan to include the new requirement
AnswerC

Following the change control process ensures proper evaluation and approval.

Why this answer

Option C is correct because the PM must analyze the impact on scope, schedule, and cost, then submit a change request. Option A is wrong because it ignores the requirement. Option B is wrong because it may not be necessary to change the entire plan.

Option D is wrong because the PM should not implement changes without approval.

441
MCQhard

The project manager reviews the benefits realization report for a cloud migration project. The project sponsor asks why the benefits are not being realized as planned. What is the MOST likely cause?

A.The project was behind schedule
B.The benefits were not clearly defined
C.The project's deliverables did not fully support the expected benefits
D.The project team lacked technical skills
AnswerC

Shortfalls across multiple metrics often indicate that the deliverables themselves are not aligned with the benefit targets.

Why this answer

The benefits realization report tracks whether the expected business outcomes from the cloud migration are being achieved. If the project's deliverables (e.g., migrated applications, infrastructure) do not fully support the expected benefits—such as cost savings from auto-scaling or performance gains from cloud-native services—then the benefits will not materialize, regardless of schedule or team skill. This is the most direct cause because benefits depend on the alignment between deliverables and the defined benefit criteria.

Exam trap

The trap here is that candidates often confuse 'benefits not realized' with 'benefits not defined' (Option B), but the PMBOK emphasizes that benefits must be measurable and tied to deliverables; the existence of a report implies definition, so the issue is execution alignment.

How to eliminate wrong answers

Option A is wrong because being behind schedule may delay benefit realization but does not inherently prevent benefits from being realized once deliverables are completed; schedule variance is a separate performance domain. Option B is wrong because the question states the benefits realization report exists, implying benefits were defined; the issue is that they are not being realized, not that they were unclear. Option D is wrong because lacking technical skills could affect deliverable quality or timeline, but the core cause of unrealized benefits is a misalignment between what was built and what was needed to achieve the benefits, not the team's skill level per se.

442
MCQeasy

Two senior developers on your project have a heated disagreement about the technical approach for implementing a key feature. They both have strong arguments, and the conflict is delaying the sprint. As the project manager, what is the BEST first step to resolve this conflict?

A.Escalate the issue to the project sponsor for a decision
B.Meet with each developer separately to understand their perspectives before facilitating a joint discussion
C.Tell the developers to set aside their differences and move forward with the current plan
D.Choose the approach that aligns with the project's objectives and instruct the team to implement it
AnswerB

Gathering information from each party first helps identify the root cause and enables a collaborative solution.

Why this answer

Option B is correct because it follows the PMI conflict resolution principle of 'collaborate/problem-solve' by first gathering individual perspectives privately before facilitating a joint discussion. This approach ensures each developer feels heard, reduces emotional tension, and allows the project manager to identify the underlying technical merits of each argument without group bias. It is the best first step because it addresses the root cause of the conflict—differing technical opinions—before attempting any resolution or escalation.

Exam trap

The trap here is that candidates often choose Option A (escalate) or Option D (decide unilaterally) because they mistake a technical conflict for a decision that requires authority, rather than recognizing that the PM's best first step is to facilitate collaboration and gather information before any decision is made.

How to eliminate wrong answers

Option A is wrong because escalating to the sponsor bypasses the project manager's responsibility to resolve team conflicts and removes ownership from the developers, which can damage team morale and autonomy. Option C is wrong because telling developers to 'set aside differences' without understanding the technical disagreement suppresses healthy debate and may force a suboptimal solution, leading to future rework or technical debt. Option D is wrong because unilaterally choosing an approach based on project objectives ignores the collaborative problem-solving process and may overlook critical technical nuances that only the developers fully understand.

443
MCQeasy

Your project team includes members from diverse cultural backgrounds. A team member from a high-context culture is perceived by others as not being direct enough, causing misunderstandings. What should you do to improve team cohesion?

A.Provide diversity and inclusion training to the entire team
B.Assign a mentor to coach the team member on being more direct
C.Ask the team member to adapt their communication style to match the majority
D.Send a memo clarifying preferred communication styles
AnswerA

Training promotes understanding and leverages diversity as a strength.

Why this answer

Option A is correct because providing diversity and inclusion training addresses the root cause of the misunderstanding—cultural differences in communication styles—by educating the entire team on high-context vs. low-context cultures. This aligns with the PMP's focus on fostering a collaborative team environment through mutual understanding, rather than singling out or forcing change on one individual. It promotes team cohesion by building awareness and respect for diverse communication norms, which is essential for leading projects in a global context.

Exam trap

The trap here is that candidates often choose Option B or C, mistakenly believing that the fastest path to cohesion is to 'fix' the minority team member's behavior, rather than recognizing that PMP best practices require a systemic, team-wide solution that respects cultural diversity and avoids marginalization.

How to eliminate wrong answers

Option B is wrong because assigning a mentor to coach the team member on being more direct places the burden of adaptation solely on the individual from the high-context culture, which can lead to resentment and does not address the team's lack of understanding of cultural differences. Option C is wrong because asking the team member to adapt their communication style to match the majority reinforces a dominant-culture bias and violates the PMI Code of Ethics and Professional Conduct's principle of respect for diversity, potentially reducing psychological safety. Option D is wrong because sending a memo clarifying preferred communication styles is a one-way, directive approach that fails to engage the team in dialogue or provide the deeper cultural awareness needed to change behaviors and perceptions.

444
MCQmedium

During a project audit, you discover that a team member has been gold-plating the deliverables by adding extra features not requested. What is the BEST action to take?

A.Allow the team member to continue as the extra features may add customer value
B.Meet with the team member to discuss the importance of adhering to the approved scope and the risks of gold-plating
C.Report the team member to HR for violating project policies
D.Remove the extra features immediately without consulting the team member
AnswerB

Educating the team member is the correct approach.

Why this answer

Gold-plating is discouraged. Option B addresses the root cause. Option A ignores the issue.

Option C is reactive. Option D is harsh without understanding.

445
Drag & Dropmedium

Order the steps for developing a project schedule.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order

Why this order

Schedule development includes defining activities, estimating, sequencing, applying leads/lags, and determining the critical path.

446
MCQeasy

Your project team consists of members from different cultural backgrounds, and you notice that some team members are not voicing their opinions during meetings, while others dominate discussions. What is the BEST way to foster an inclusive environment?

A.Send meeting agendas in advance and collect written feedback
B.Assign speaking turns to ensure everyone participates equally
C.Ask dominant members to speak less during meetings
D.Create a team charter that includes meeting norms encouraging respectful and balanced participation
AnswerD

A team charter collaboratively defines norms, fostering ownership and inclusivity.

Why this answer

Option D is correct because creating a team charter with agreed-upon meeting norms proactively establishes a framework for respectful and balanced participation, addressing cultural differences without singling out individuals. This aligns with the PMBOK Guide's emphasis on team charter development as a tool to define ground rules and foster a collaborative, inclusive environment from the start.

Exam trap

The trap here is that candidates often choose reactive, short-term fixes (like assigning turns or silencing dominant members) instead of the proactive, process-based solution of establishing team norms through a charter, which is the PMP-recommended approach for sustainable inclusivity.

How to eliminate wrong answers

Option A is wrong because sending agendas and collecting written feedback may help introverted members but does not address the root cause of imbalanced verbal participation or set explicit behavioral expectations for meetings. Option B is wrong because assigning speaking turns can feel forced and may not respect cultural norms around hierarchy or spontaneity, potentially reducing authentic engagement. Option C is wrong because asking dominant members to speak less is a reactive, confrontational approach that can create resentment and does not establish sustainable, agreed-upon norms for the entire team.

447
MCQmedium

The sponsor asks you to skip the final round of user acceptance testing (UAT) to meet the deadline, stating that earlier tests were sufficient. What should the project manager do first?

A.Direct the team to proceed without UAT because the sponsor has authority
B.Agree to skip UAT to accommodate the sponsor's request
C.Explain the risks of skipping UAT and propose alternatives, such as reducing test scope or compressing the schedule
D.Escalate to the PMO or senior management that the sponsor is compromising quality
AnswerC

The PM should communicate risks and seek a collaborative solution while maintaining quality.

Why this answer

Option B is correct because skipping quality activities can lead to defects; the PM should explain the risks and seek a decision through change control. Option A is wrong because it bypasses proper process. Option C is wrong because the PM should not unilaterally decide.

Option D is wrong because escalation should be a last resort.

448
MCQmedium

You are leading a global software development project with team members in three different time zones. Recently, two senior developers from different locations have been in conflict over the design approach for a critical component. The conflict has started to affect team morale and productivity. What should you do FIRST?

A.Schedule a meeting with both developers to discuss the issue and find a mutually agreeable solution.
B.Decide on the design approach yourself to end the conflict quickly.
C.Escalate the issue to the sponsors and ask them to intervene.
D.Reassign the developers to different tasks to avoid further conflict.
AnswerA

Direct, collaborative conflict resolution is the recommended approach.

Why this answer

Option A is correct because, as the project manager, your first responsibility is to address interpersonal conflicts directly and collaboratively. Scheduling a meeting with both developers to discuss the issue and find a mutually agreeable solution aligns with the PMI's emphasis on conflict resolution techniques like 'collaborating/problem-solving,' which seeks a win-win outcome. This approach preserves team morale and productivity by involving the stakeholders in the decision, rather than imposing a solution or avoiding the problem.

Exam trap

The trap here is that candidates often choose Option B (forcing) because it appears efficient, but PMI prioritizes collaborative resolution to maintain team cohesion and long-term project success, even if it takes more time initially.

How to eliminate wrong answers

Option B is wrong because deciding on the design approach yourself is a 'forcing' conflict resolution technique that may end the conflict quickly but often leads to resentment, reduced buy-in, and long-term damage to team dynamics. Option C is wrong because escalating to sponsors is premature; the project manager should first attempt to resolve the conflict at the team level before involving higher authorities, as sponsors are not typically involved in technical design decisions. Option D is wrong because reassigning developers to different tasks avoids the root cause of the conflict and may lead to skill mismatches, reduced efficiency, and unresolved tensions that could resurface later.

449
Multi-Selecthard

Which THREE of the following are key considerations when evaluating the strategic value of a proposed project during portfolio selection? (Choose three.)

Select 3 answers
A.Strategic alignment
B.Return on investment (ROI)
C.Organizational culture
D.Resource availability
E.Risk exposure
AnswersA, B, E

The project must support the organization's strategic goals.

Why this answer

Strategic alignment (A) is a key consideration because it ensures the proposed project directly supports the organization's overarching goals and competitive strategy, which is the primary filter in portfolio selection. Without alignment, even a profitable project can divert resources from more critical strategic initiatives, leading to suboptimal portfolio value.

Exam trap

The trap here is that candidates often confuse operational feasibility factors (like culture or resource availability) with strategic value criteria, which are specifically about alignment, financial return, and risk-adjusted contribution to organizational goals.

450
MCQmedium

In a large-scale project using a predictive approach, you discover that a key team member, who is critical for the next deliverable, has been consistently missing deadlines and producing low-quality work. The project is already behind schedule. What should you do FIRST?

A.Schedule a private meeting with the team member to discuss performance issues and offer support
B.Reassign the critical tasks to other team members to keep the project on schedule
C.Immediately escalate to the team member's functional manager and request a replacement
D.Document the missed deadlines in the performance log and ignore for now
AnswerA

Direct, private conversation allows the PM to understand obstacles and provide coaching or resources.

Why this answer

Option A is correct because, as a project manager, your first responsibility is to address performance issues directly with the team member through a private, supportive conversation. This aligns with the PMI People domain's emphasis on servant leadership and conflict resolution, allowing you to understand root causes (e.g., unclear requirements, personal challenges) before taking corrective action. In a predictive project, reassigning tasks or escalating prematurely can damage trust and team morale, while ignoring the issue risks further schedule slippage.

Exam trap

The trap here is that candidates often jump to 'escalate to functional manager' (Option C) as a quick fix, but the PMP exam emphasizes that the project manager should first attempt to resolve issues directly with the team member using coaching and support, as per the servant leadership mindset.

How to eliminate wrong answers

Option B is wrong because reassigning critical tasks without first understanding the performance issue may overload other team members, introduce rework due to knowledge transfer gaps, and fail to address the underlying problem, potentially worsening the schedule. Option C is wrong because immediately escalating to the functional manager bypasses the team member's right to feedback and support, violating the PMI Code of Ethics and Professional Conduct's principle of respect, and may demotivate the individual. Option D is wrong because documenting missed deadlines without taking action is passive and does not fulfill the project manager's duty to proactively manage team performance and mitigate risks to the project schedule.

Page 5

Page 6 of 12

Page 7