This repository has been archived by the owner on Dec 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pmg-key.txt
4745 lines (3197 loc) · 197 KB
/
pmg-key.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Agile project management works well with projects that take an iterative approach. What does this mean? Select all that apply.
a. Project deliverables improve continuously based on feedback
b. The team operates within many short blocks of time
c. The project will take longer to complete
d. Project processes are repeated many times during the life cycle of the project-----a, b, d
As an Agile project manager, you should value individuals and interactions over processes and tools. What does this mean for your team? Select all that apply.
a. Improve collaboration within the team by effectively using processes and tools to drive and facilitate your project.
b. Forgo using processes and tools in order to speed up the production process.
c. Work together with your team to help each other achieve the best outcomes possible.
d. Have brief conversations rather than long, drawn out email exchanges.-----a, c, d
How do Agile teams collaborate with their business partners and stakeholders to create business value for the organization and their users? Select all that apply.
a. Work together with business people and developers throughout the project
b. Help each other achieve the best outcome
c. Gather feedback at the end of the project only
d. Welcome changing requirements-----a, b, d
You're the lead project manager at Office Green LLC, a commercial landscaping company focused on interior plant design. Your company's market research team identifies a major shift to workers setting up home offices. Your team wants to pursue this business opportunity.
The goal is to deliver their new service, called Virtual Verde, and you don't have any existing project plans to build off of or time to do a lot of prep work. Which factors do you face? Select all that apply.
a. Complexity
b. Uncertainty and ambiguity
c. Volatility
d. Budget constraints-----a, b, c
How can the VUCA concept help you decide to use Agile or Waterfall? Select all that apply.
a. It helps determine if your project needs more predictive stability than the Waterfall method provides.
b. It helps determine if your project is too ambiguous for the Waterfall method.
c. It helps determine whether your project is too volatile for the Waterfall method.
d. It helps determine how complex your project is.-----b, c, d
As a project manager, what are some reasons you might choose to follow a Scrum methodology? Select all that apply.
a. It supports and reinforces the Waterfall model.
b. It's free and open for everyone.
c. It offers a regular and predictable meeting and delivery schedule, with predefined agendas and outcomes for the meetings.
d. It has clear roles and responsibilities for your team, but emphasizes the power of the team as a whole.-----b, c, d
What are the four basic activities performed during the product development process of the XP method?
a. Designing, coding, testing, and listening
b. Designing, collaborating, testing, and summarizing
c. Planning, collaborating, testing, and designing
d. Planning, coding, summarizing, and developing-----a
Fill in the blank: To get the full benefits from Agile, you must adopt not only its processes, but also its _____.
a. mindset
b. software
c. terminology
d. platform-----a
As a project manager, you're leading a project that has an initial set of requirements at kick off, but you know this list will grow and change. Your team will work with stakeholders to prioritize requirements as the project moves forward. What approach is the best choice for your project?
a. Scrum
b. Waterfall
c. Linear
d. Agile-----d
Fill in the blank: Agile project management is _____; the team operates within many short blocks of time where deliverables will evolve and improve depending on the feedback received.
a. inflexible
b. linear
c. iterative
d. repetitive-----c
As a project manager, when can an Agile methodology best support your project? Select all that apply.
a. When the project faces constraints, including costs or time
b. When the project receives feedback from diverse stakeholders, with competing interests
c. When the project may need adjustments along the way
d. When the project deliverable is not yet clear-----b, c, d
As an Agile project manager, why is it important to value customer collaboration over contract negotiation? Select all that apply.
a. It encourages your team to seek out every opportunity to include the customer or stakeholder during project execution.
b. It reinforces that customer satisfaction is the highest priority when building a high quality and valuable product.
c. It saves your organization time and money.
d. It allows the freedom to collaborate with customers early and often.-----a, b, d
What does VUCA stand for?
a. Volatility, uncertainty, complexity, and ambiguity
b. Volume, uncertainty, complexity, and accuracy
c. Veracity, uncertainty, collaboration, and accountability
d. Volatility, upheaval, collaboration, and ambiguity-----a
In the following scenario about team management, the project manager blends which two methodologies?
A team is developing a software product. During the retrospective for the last sprint, a team member says, "I need to implement a certain feature, but I don't have much experience building that particular feature." Someone else on the team is an expert on the feature, so the project manager pairs them up to build the feature during the next sprint.
a. Waterfall and XP
b. Agile and Scrum
c. Scrum and Kanban
d. Scrum and XP-----d
Where does Scrum get its name? Select all that apply.
a. Scrum refers to a football team's huddle.
b. Scrum refers to a formation in rugby where players huddle closely together with their heads down while trying to gain possession of the ball.
c. The purpose of the rugby scrum is for each player on the team to play their role in order to work together and achieve their shared goal.
d. Scrum is an acronym for the processes that make up the Agile methodology.-----b, c
To create the most value for the customer, you ensure the customer can ask for additional features or incremental deliveries throughout the value stream. This is an example of what Lean methodology principle?
a. Define value
b. Establish pull
c. Create flow
d. Map value stream-----b
You are managing a project and your customer does not know which features they want in the end product. How can Agile help solve your customer's problem? Select all that apply.
a. Agile helps your team frequently and quickly get customer feedback. This enables you to make changes as needed and give your customer the product they really want.
b. Agile helps you create a product requirements document, formally-approved project plans, and a change control board, with the aim of protecting the team from building something that the customer doesn't want and minimizing any changes.
c. Agile enables you to produce more than one version of the product. Then, the customer can decide which one they prefer.
d. Agile acknowledges the fact that things change and is designed to embrace these changes as your project progresses.-----a, d
As a project manager, you're leading a project that has clear requirements and goals based on mandated regulation. Which methodology is the best choice for your project?
a. Scrum
b. Iterative
c. Agile
d. Waterfall-----d
What does it mean to say that Agile project management takes an iterative approach? Select all that apply.
a. The project processes are repeated
b. The team takes a subset of all the project's activities and does all the work
c. The activities are completed in a linear fashion
d. The team operates within many shorter blocks of time-----a, b, d
What does the Agile Manifesto mean by value delivery? Select all that apply.
a. Simplify and maximize the amount of work not done
b. Save clients as much money as possible
c. Deliver products quickly and frequently
d. Deliver highly valuable products to customers-----a, c, d
Waterfall and Agile include how many of the same phases and tasks?
a. None
b. A couple
c. Most
d. All-----c
As a Waterfall project manager, your goal is to minimize any changes that could lead to scope creep. You want to protect your team from building something the client or stakeholders don't want. What formal and rigorous process could you set up to safeguard against this?
a. Change Control Board
b. Formal communication freeze
c. Kanban board
d. Daily stakeholder meetings-----a
In the three pillars of Scrum Theory, what does inspection refer to? Select all that apply.
a. Performing regular evaluations in order to find improvements
b. Continuously checking in on progress and deliverables to detect any undesirable changes
c. Conducting timely checks towards the outcome of a sprint goal to detect undesirable variances
d. Allowing stakeholders a look into project plans-----a, b, c
In Agile, what is a mission statement?
a. A short statement that explains specific tasks your team members should work on.
b. A short statement that helps your team imagine what the work will be like when they're done.
c. A short statement that shows stakeholders what your team's values are.
d. A short statement that gives your team something to work towards and stays constant throughout the project.-----d
In Scrum, the Product Owner is responsible for what? Select all that apply.
a. Ensuring the product or service fulfill the customers' needs
b. Helping the Developers understand what to build
c. Coaching and facilitating Scrum events
d. Prioritizing the Product Backlog-----a, b, d
What are some of the tasks Product Owners are responsible for? Select all that apply.
a. Continuously maximize the value of the product delivered by the Scrum Team
b. Ensure the team builds the right product or service
c. Ensure the Product Backlog is visible and transparent to all
d. Deal with vendors and contract negotiations-----a, b, c
What are some of the main responsibilities of a Scrum Master? Select all that apply.
a. Coaching team members to use Agile and Scrum practices
b. Acts as the voice of the customer
c. Facilitates scrum events such as Sprint Retrospectives
d. Minimizes unhelpful interactions or interruptions coming from outside of the team-----a, c, d
What is the optimal size of a Development Team?
a. 5 to 20 people
b. 1 to 3 people
c. 3 to 9 people
d. 11 to 15 people-----c
What are the key characteristics of successful Product Owners? Select all that apply.
a. Independent
b. Customer-focused
c. Collaborative
d. Optimistic-----b, c, d
Scrum Teams behave according to what core values? Select all that apply.
a. Respect
b. Focus
c. Commitment
d. Dissension
e. Openness-----a, b, c, e
What are attributes of a project team that uses Scrum development? Select all that apply.
a. Cross-functional
b. Independent
c. Customer-oriented
d. Self-managing-----a, c, d
Which of the following are responsibilities that a Product Owner would typically have and a project manager would not have? Select all that apply.
a. Create and communicate Product Backlog items
b. Timebox management
c. Monitor team performance
d. Manage stakeholders-----a, b
Fill in the blank: A Scrum Team should be _____, which means people with different skill sets in the organization work together to complete the project successfully.
a. decisive
b. self-disciplined
c. cross-functional
d. organized-----c
What two qualities should a successful Development Team possess? Select all that apply.
a. Cross-functional
b. Independent
c. Self-organizing
d. Self-sufficient-----a, c
Who on the Scrum Team is responsible for meeting customers' needs and prioritizing the Product Backlog?
a. Project Manager
b. Scrum Master
c. Development Team
d. Product Owner-----d
A team member runs into an issue within the project but they aren't sure how to fix it. They share this problem with the team to ensure everyone is aware of the challenge they encountered.
What core Scrum value is embodied in this scenario?
a. Openness
b. Focus
c. Commitment
d. Respect-----a
What is one responsibility of both a Product Owner and a project manager?
a. Timebox management
b. Product Backlog management
c. Team performance management
d. Stakeholder management-----d
Which two of the following statements regarding a product vision are correct?
a. A product vision makes it clear where your team's boundaries are.
b. A product vision tells your team the specific tasks they need to complete.
c. A product vision helps your team imagine what the work will be like when they're done.
d. A product vision is a short statement that stays constant throughout the project.-----a, c
What are a Product Owner's responsibilities? Select all that apply.
a. Clearly communicate and prioritize the Product Backlog
b. Make sure the product fulfills the customers' needs
c. Facilitate Scrum events such as the Sprint Planning and Retrospective
d. Help the team understand the overall goal and mission of the project-----a, b, d
What is the main difference between a Scrum Master and a project manager?
a. A Scrum Master chiefly acts as a coach and facilitator to the Scrum Team
b. A Scrum Master chiefly acts as a customer liaison to the Scrum Team
c. A Scrum Master chiefly acts as the main line of communication between stakeholders and the Scrum Team
d. A Scrum Master chiefly acts as a product technical expert to the Scrum Team-----a
A team member is working on a very specific solution involving a new technology. Teammates work together to speed up their progress. With their teammates' help, they get it across the finish line.
What core Scrum value is embodied in this scenario?
a. Openness
b. Courage
c. Respect
d. Focus-----d
When using Scrum, the team repeats project processes in a timebox. What Agile term does this approach represent?
a. Increases
b. Increments
c. Iterations
d. Inspections-----c
What is one difference between a project manager and Scrum Master?
a. There is no difference between the two.
b. The Scrum Master prepares the work schedule for the team members and assigns responsibilities, while a project manager coaches the team on Scrum and motivates them.
c. The project manager prepares the work schedule for the team members and assigns responsibilities, while a Scrum Master coaches the team on Scrum and motivates them.
d. The project manager is concerned with the team's performance, while the Scrum Master is concerned with managing the team's Backlog.-----c
Fill in the blank: The Product Owner's key responsibility is acting as the voice of the _____ within the team.
a. customer
b. organization
c. stakeholder
d. vendor-----a
What are some key skills a successful Scrum Master should have? Select all that apply.
a. Leadership
b. Budgeting
c. Coaching
d. Communication-----a, c, d
What are the benefits of locating a team in the same physical space (also known as co-locating)? Select all that apply.
a. The team collaborates effectively over video conferencing platforms.
b. The team gets together quickly to get work done or solve a problem.
c. The team delivers a higher quality of work at a quicker rate.
d. The team works across time zones by coordinating schedules.-----b, c
Which of the following best describes why Scrum Teams refer to the Product Backlog as a living artifact?
a. The Product Owner adds items at any time.
b. The team only adds items at the end of a Sprint.
c. The Product Owner only adds items at the end of a Sprint.
d. The stakeholders can add items at any time.-----d
Which of the following exhibit the best practices for formatting a user story?
a. Paint the client's home because they want to increase the value of their home and protect its exterior surface.
b. Paint the client's home to increase its value and protect its exterior surfaces.
c. As the homeowner, I want my home painted, so that it increases the value of my home and protects the exterior surfaces.
d. Paint my home because as a homeowner, it will increase its value and protect its exterior surfaces.-----c
As a Product Owner doing story estimation, you tell your team to keep their initial estimate private. This allows team members to form an independent opinion before sharing. Which effective estimation characteristic does this refer to?
a. Avoid anchoring bias
b. Promote inclusivity
c. Lead to effort discovery
d. Build team trust-----a
As a Product Owner, you set the initial Sprint duration the team has to work on their items. This refers to what Scrum concept?
a. Schedule
b. Timebox
c. Time frame
d. Interval-----b
During what Scrum event will the Scrum Master ask questions like: What has been our average velocity? Who on the team has any upcoming vacations or work conflicts? Who is responsible for what Sprint tasks?
a. Sprint Review
b. Sprint Retrospective
c. Daily Scrum
d. Sprint planning-----d
Which role is responsible for assisting team members to clear obstacles and unblock their work?
a. Scrum Master
b. Another teammate
c. Product Owner
d. Key stakeholder-----a
What does the Scrum Team reflect on during a Sprint Retrospective? Select all that apply.
a. Were the improvements in the last Sprint helpful or not?
b. What improvements are worth exploring in the next Sprint?
c. Who was at fault for not accomplishing a story?
d. What's working or not working for the team regarding the people, the processes, and the tools?
e. What updates should the team make to user stories in the next Sprint?-----a, b, d
Fill in the blank: When a team conducts Sprint Planning, they use the average velocity of _____ to determine how many items they can safely add to their Sprint Backlog.
a. at least three weeks
b. at least three days
c. at least three story points
d. at least three Sprints-----d
Why would a Scrum Team use a Kanban board? Select all that apply.
a. To visualize tasks
b. To take fewer notes
c. To make it easier to notice work-in-progress (WIP) limits
d. To give a better sense of the team's flow of work-----a, c, d
Utilizing tools in Scrum helps make the team fully aware of progress and updates. This embodies which Scrum pillar?
a. Commitment
b. Inspection
c. Transparency
d. Adaptation-----c
As a Product Owner building a Backlog, what three pieces of information should you include for each item?
a. Step-by-step instructions on how to complete the item
b. The level of effort to complete the item
c. The date the item is due
d. A set value for each item, such as dollar signs
e. A clear description from the perspective of the customer-----b, d, e
A Product Owner writing a user story needs the story to fit within the planned Sprint. If the user story is too large, they break it down into multiple, scaled-down stories in order to meet which of the I.N.V.E.S.T. story writing criteria?
a. Estimitable
b. Negotiable
c. Independent
d. Valuable
e. Small-----e
Which of the following typically happens during a Sprint? Select all that apply.
a. The Product Backlog is refined by the Product Owner as needed.
b. The Sprint Goal is changed by the Product Owner as needed.
c. The project scope is clarified with the Product Owner as more is learned.
d. The work quality improves—or at least stays the same—when compared to the last Sprint.-----a, c, d
During the Sprint Review, what does the team unveil that demonstrates what they produced in a given Sprint that is considered releasable?
a. product increment
b. Product Backlog
c. user story
d. acceptance criteria-----a
Fill in the blank: Retrospectives in Scrum happen _____ a traditional project.
a. as often as in
b. more often than in
c. less often than in-----b
What's the overall goal of a burndown chart?
a. Serve as a communication tool for outside stakeholders
b. Provide a way to compare productivity among teams
c. Keep the team aware of how they're doing against their goals
d. Quantify performance for individual team members-----c
Work in progress (WIP) limits place constraints on how many items a team works on at any given time. What Scrum value do WIP limits encourage for a team?
a. Courage
b. Openness
c. Focus
d. Commitment-----c
As a Product Owner, you need to organize and visualize your Backlog. What is an example of a tool that would make this task easier?
a. Jira or Trello
b. Zoom or Google Chat
c. Gmail or Slack
d. Google Slides or Microsoft PowerPoint-----a
How do Product Owners typically organize items in the Backlog?
a. From most to least time-consuming
b. From simplest to most complex
c. From highest to lowest priority
d. From easiest to most difficult-----c
Fill in the blank: As a Product Owner writing a user story, you want every task to have a clear Definition of Done. A clear Definition of Done helps the team better understand how much effort it will take to complete an item. Including a Definition of Done in a user story makes it _____, one of the I.N.V.E.S.T. story-writing criteria.
a. small
b. negotiable
c. independent
d. estimable
e. valuable-----d
As a Product Owner, you need to add estimates to your Backlog for a small number of items. You'd like your team to reach a consensus on the number of items, and you'd also like to incorporate the Fibonacci sequence. Which effort estimation technique should you use?
a. The Bucket System
b. Dot Voting
c. Planning Poker™
d. Affinity Mapping-----a
Which of the following may indicate a task meets the Definition of Done? Select all that apply.
a. The product passes all testing requirements.
b. The Product Owner accepts the story.
c. An independent peer group reviews the product.
d. The product meets half of the acceptance criteria.-----a, b, c
As a Product Owner hosting a Sprint Retrospective, you ask the team, "Where did we notice success?" This question reflects which Retrospective best practice?
a. Be blameless
b. Change up the format
c. Take action
d. Balance negative with positive-----d
What stakeholder benefit does a team provide when they have a stable velocity and refine their Product Backlog?
a. Able to compare the team to other teams at the company
b. Know approximately how long it will take to complete the Backlog
c. Verify if the team is productive
d. Able to alter the project's goals, milestones, and deliverables-----b
Which of the following is a key deliverable of Sprint Planning?
a. The project charter
b. A burndown chart
c. Retrospective notes
d. The Sprint Backlog-----d
Fill in the blank: You can make sure your team delivers value to customers by building the right thing, building the thing right, and _____.
a. scaling as fast as possible
b. running it cheaply
c. running it right
d. selling it right-----c
Fill in the blank: A(n) _____ is a guide that demonstrates where to go, how to get there, and what to accomplish along the way in order to maximize value.
a. capacity roadmap
b. value roadmap
c. release roadmap
d. vision roadmap-----b
Fill in the blank: The product vision defines what the product is, who uses it, and how it supports the customer's _____.
a. professional reputation
b. financial gains
c. release plan
d. business strategy-----d
What are some common pitfalls of making a product roadmap? Select all that apply.
a. Pressure teams to achieve deadlines no matter what it takes
b. Put more work into the roadmap than the deliverables
c. Conduct regular reviews of the roadmap with stakeholders and the team
d. Let stakeholders think the roadmap is set and unchangeable-----a, b, d
Imagine you are a project manager for a software company. Your team plans to develop a new learning management system (LMS) for a local school district by the end of the quarter. Which of the following factors can potentially push back your release plan date? Select all that apply.
a. A member of your development team leaves to take a new job.
b. The school district increases the project budget and provides additional resources.
c. The Product Owner expands the project to include two additional school districts.
d. Your team realizes an epic will take more time to complete than anticipated.-----a, c, d
As a project manager, your organization makes a shift to Agile. To create a sense of urgency, which questions should you ask your team about what's working, and what's not working right now?
a. What allows our competitors to outperform us and get their products and features to market more quickly?
b. How can we help you become more productive and supported in your work?
c. What can we do to cut costs in our product creation and Sprint process?
d. How can we change the company's stated mission or values to better align with our work?-----a, b
Imagine you are a project manager for a company that adopts a new invoicing process. To ensure successful adoption, you schedule training sessions so each team member can develop the skills they need to complete the process. Which of the sources of influence does this scenario demonstrate?
a. Structural ability
b. Structural motivation
c. Personal motivation
d. Personal ability
e. Social ability
f. Social motivation-----d
Imagine you are a project manager overseeing a new set design for a local news network. You notice your team is becoming overwhelmed with critical feedback from producers. Then, your team informs you that they no longer want to receive feedback from the producers. Which Agile principle do these issues impact the most?
a. Business collaboration
b. Value delivery
c. Retrospectives
d. Team dynamics and culture-----a
What can you do to avoid making too many or unfounded product assumptions? Select all that apply.
a. Document assumptions and make them transparent to all.
b. Ask the Product Owner to double-check and approve assumptions.
c. Conduct surveys or focus groups to double-check assumptions, where necessary.
d. Discuss assumptions as a team.
e. Reuse assumptions from similar, past projects.-----a, c, d
Which of the following scaled Agile frameworks involve Scrum Masters meeting frequently to better coordinate work on a single product across teams?
a. Disciplined Agile Delivery (DAD)
b. Large-Scale Scrum (LeSS)
c. Scrum of Scrums
d. Scaled Agile Framework (SAFe)-----c
What are the components of a typical value roadmap?
a. A product roadmap, a vision statement, and development plans
b. A product vision, a product roadmap, and release plans
c. A product vision, a mission statement, and development plans
d. A product roadmap, a mission statement, and release plans-----b
Which of the following are product roadmap best practices? Select all that apply.
a. Make the roadmap highly noticeable to the team and refer to it frequently.
b. Inform the team you finalized the roadmap.
c. Fine-tune delivery dates for accuracy well in advance.
d. Conduct regular reviews with sponsors, stakeholders, and the team.
e. Indicate highest priority and highest value items.
f. Make the roadmap highly visible to stakeholders.-----a, d, e, f
Imagine you are a project manager creating release plans for a new cloud storage service. Your team is performing well, so you decide to push up the estimated release date. Which specific factors do you take into account to make your decision?
a. The team's capacity and velocity
b. The team's size and the customer's budget
c. The team's willingness and work ethic
d. The team's experience and the customer's timeline-----a
Does a low level of interpersonal conflict mean that a team is experiencing issues?
a. Yes. A team that rarely has disagreements is not committed enough to the work.
b. No. A team that rarely has disagreements is more productive than a team that disagrees frequently.
c. Sometimes. If a team rarely has disagreements, it could mean team members don't feel safe stating their opinions.-----c
What can you do to address instability when people leave and join your team frequently? Select all that apply.
a. Ask new team members to create up-to-date project documentation before starting work.
b. Use pair programming so new team members can learn on the job.
c. Create a quick onboarding process for new team members.
d. Use financial incentives to keep team members from leaving.
e. Schedule shorter sprints so departing team members can wrap up work.-----b, c, e
Which of the following scaled Agile frameworks involve Scrum Masters meeting frequently to better coordinate work on a single product across teams?
a. Large-Scale Scrum (LeSS)
b. Disciplined Agile Delivery (DAD)
c. Scaled Agile Framework (SAFe)
d. Scrum of Scrums-----d
Which of the following are components of a typical value roadmap? Select all that apply.
a. A product roadmap
b. A product playbook
c. A release plan
d. A product vision
e. A mission statement-----a, c, d
Which of the following provides an overview of the expected product, its high-level requirements, and an estimated schedule for reaching milestones?
a. A Product Backlog
b. A product vision
c. A product roadmap
d. A value playbook-----c
Imagine you're a project manager creating a project roadmap. You meet with the Product Owner to estimate the team's capacity and velocity—their ability to complete work at a certain pace. Which Agile principle does this scenario represent?
a. Deliver working software frequently, with a preference to the shorter timescale.
b. Agile processes promote sustainable development—the team developers should be able to maintain a constant workload.
c. Stakeholders and the team developers must work together daily throughout the project.
d. At regular intervals, the development team meets to reflect on how to become more effective.-----b
Imagine you are a project manager overseeing the adoption of Agile at your organization. To smooth the transition, you define specific outcomes. You also make sure the measures are visible to the entire team throughout the change. Which of the three keys to influence does this scenario demonstrate?
a. Leverage the six sources of influence
b. Clarify measurable results
c. Find vital behaviors-----b
Imagine you are a project manager for a mobile game that is experiencing significant technical issues. While working on the update, your team members appear unhappy and arrive at work late. What can you do to boost morale and improve the quality of deliverables? Select all that apply.
a. Push back the next release date to give the team more time
b. Run a team brainstorm session to identify areas for improvement
c. Take a training class on team dynamics and how to better work together
d. Change up the workflows by pairing people to work together on hard tasks
e. Require positive attitudes in team meetings-----b, c, d
Fill in the blank: DevOps combines software development with _____.
a. Business operations
b. Scrum operations
c. Change management operations
d. Information Technology (IT) operations-----d
What is the first Agile principle?
a. Satisfy the customer through value-driven delivery
b. Save the customer money through cost-driven delivery
c. Satisfy the customer through mission-driven delivery
d. Save the customer time through speed-driven delivery-----a
What are some of the benefits of developing and maintaining a product roadmap? Select all that apply.
a. Teams follow a reliable plan that does not need to change
b. Teams and stakeholders understand the sequence of deliverables
c. Stakeholders meet with the Product Owner less frequently throughout the project
d. Stakeholders notice incremental value over the course of the project
e. Teams understand how their efforts relate to the project vision-----b, d, e
Imagine you are a project manager leading Agile adoption at an organization. Why is it important that you find an executive sponsor to support the change? Select all that apply.
a. It guarantees an increase in the project's budget.
b. It increases your chances of successfully shifting organizational culture.
c. It helps to create a sense of ownership for the change you are creating.
d. It helps to answer your team's questions about what's working and what's not working right now.-----b, c
Which of the following are benefits of an internship? Select all that apply.
a. Get short-term, hands on industry experience
b. Network with people in your desired industry
c. Boost your resume
d. Get a guaranteed permanent position-----a, b, c
Which of the following best describes why there is increasing demand for project management roles in today's job market?
a. There's significant turnover in the project management field.
b. Project management isn't adequately compensated when compared to similar roles.
c. Project management roles are designed to adapt to changes and handle new processes as they come up.
d. Project management is a relatively new job title.-----c
Fill in the blank: Working for companies _____ means you'll work on a project-by-project basis, but not as a full-time employee.
a. on a salary
b. as a mentor
c. as an intern
d. on a contract-----d
Throughout a project, project managers have to keep project expenses within an expected range. What is this project management responsibility called?
a. Budgeting and controlling costs
b. Managing tasks
c. Networking
d. Planning and organizing-----a
Which of the following is a way to define a project? Select all that apply.
a. A series of tasks that need to be completed to reach a desired outcome
b. An endeavor with unlimited deliverables from stakeholders
c. An ongoing process with no defined end date
d. A unique, temporary pursuit that has a defined beginning and end-----a, d
Fill in the blank: Project management is valuable to businesses because it _____.
a. helps ensure that a project delivers the expected outcomes on time and within budget
b. helps ensure that a project sticks to long-term and short-term deadlines
c. helps ensure that a project centralizes communication—both in real time and all at once
d. helps ensure that a project delivers goods or services that meet the customer's needs-----a
Which of the following responsibilities involves gathering project requirements and creating a project plan?
a. Forecasting the budget
b. Managing tasks
c. Planning and organizing
d. Communicating project milestones-----c
Fill in the blank: A project is a temporary pursuit, and usually includes a set of _____.
a. team members
b. strategic risks
c. unique deliverables
d. rules for accountability-----c
Fill in the blank: It's likely that you have used project management skills in the past, and these skills are _____ in professional project management.
a. transferable
b. uncommon
c. inapplicable
d. impracticable-----a
Fill in the blank: There are _____ job titles a project manager can have.
a. many and varied
b. a decreasing number of
c. very specific
d. only a few-----a
Suppose that as a project manager, you speak with stakeholders to determine which tasks the team should complete first. What project management value does this represent?
a. Delegation
b. Effective communication
c. Optimism
d. Prioritization-----d
As a project manager, you create plans, timelines, schedules, and other forms of documentation to track project completion. Which project management responsibility does this represent?
a. Planning and organizing
b. Removing unforeseen barriers
c. Managing the budget
d. Managing tasks-----a
As a project manager, you establish "escalation paths." These allow you to quickly communicate task hindrances, also called roadblocks, to the right people. When escalating a roadblock, you document it and make sure everyone that needs to know is aware of the challenge. What project management responsibility does this represent?
a. Collaborate with other teams at the organization.
b. Ensure that issues and risks are tracked and visible.
c. Help teammates adopt the right workflows and project management styles.
d. Hold all team members accountable for their assigned tasks.-----b
What is an example of measuring progress for a cross-functional team?
a. Learning what makes team members feel supported and giving positive feedback
b. Setting up effective tools so the team can easily work together
c. Defining key items and encouraging team members to ask questions
d. Recording milestones and documenting when tasks are completed-----d
You're a project manager on a team that is improving a product. How can you make sure the project stays on schedule?
a. Provide data and feedback about how customers interact with the product.
b. Track daily product improvement tasks of team members in a spreadsheet.
c. Limit communication with stakeholders to avoid input until product launch.
d. Have a meeting with stakeholders to make them aware of product concerns.-----b
As a project manager, you learn that a teammate will be out sick for at least a week. They will be unable to complete their tasks, potentially causing the project to go past its deadline. Which work reallocation strategy can keep the project on schedule?
a. Get leadership to approve overtime so the teammate can catch up on work when they return.
b. Review the out-sick teammate's tasks to determine which tasks have "float" and figure out where the order of tasks can be changed or resources can be juggled.
c. Distribute all of the out-sick teammate's tasks evenly among team members.
d. Have teammates work longer hours to get their tasks done and then do the out-sick teammate's tasks.-----b
Suppose you are trying to figure out how a team member prefers to receive positive recognition. Which interpersonal skill can you use to make this determination?
a. Work ethic
b. Understanding motivations
c. Conflict mediation
d. Negotiation-----b
As a project manager impacting an organization, you want to build a great team. Which of the following would a project manager do to build a great team? Select all that apply.
a. Address the team's needs whenever it's most convenient for the project manager's schedule.
b. Take the time to understand each team member's motivations, strengths, and weaknesses.
c. Allow the team members to have input and ask questions.
d. Understand the customer's requirements to better shape the skills needed for the team.-----b, c, d
Fill in the blank: In project management, a _____ is a person or an organization that defines the project requirements. They also may set important guidelines, such as the budget and deadlines.
a. competitor
b. vendor
c. customer
d. teammate-----c
Fill in the blank: _____ is when a project manager supports each individual on their team to meet expectations and exceed their own sense of personal potential.
a. Mentoring
b. Promoting
c. Planning
d. Communicating-----a
Which of the following is true of an effective project manager in an organization?
a. Have personally met the project's stakeholders
b. Must know all of the specific details of the project
c. Have the necessary skills, knowledge, tools, and techniques for the project
d. Have had a previous role in the organization sponsoring the project-----c
Which term refers to the process of initiating a project, making a plan, executing and completing tasks, and closing a project?
a. Agile methodology
b. Waterfall methodology
c. Project life cycle
d. Project management methodology-----c
Why should project managers always initiate a project (phase one) before making a plan (phase two)?
a. Because determining scope, cost, and timeline is crucial to creating a budget, setting a schedule, and determining roles and responsibilities
b. Because establishing your team is crucial to have in place before understanding scope, cost, and timeline
c. Because executing and completing tasks successfully is crucial to creating a budget, setting a schedule, and determining roles and responsibilities
d. Because creating a budget, setting a schedule, and determining roles and responsibilities is crucial to understanding scope, cost, and timeline-----a
What is the term for a set of guiding principles and processes for owning a project through its life cycle?
a. Waterfall methodology
b. Project management methodology
c. Project life cycle
d. Life cycle methodology-----b
Which answer best describes the Agile project management methodology?
a. Created in the seventies, the Agile methodology refers to the sequential ordering of phases, including initiating, planning, executing, and closing.
b. Created in the eighties, the Agile methodology refers to the sequential ordering of phases, including defining, measuring, analyzing, improving, and controlling.
c. Created in the eighties, the Agile methodology refers to being able to move quickly and easily through a project by combining and eliminating tasks.
d. Created in the nineties, the Agile methodology refers to being able to move quickly and easily through a project by working on many tasks at once.-----d
What is the main advantage of the Agile approach over the Waterfall methodology?
a. Agile allows the project manager to make centralized decisions and assign tasks.
b. Agile has clearly defined expectations and helps teams avoid expensive changes to a project once it has started.
c. Agile takes a flexible approach, letting teams make adjustments as they go.
d. Agile focuses on reducing waste within an operation.-----c
The Lean Six Sigma approach includes which of the following phases?
a. Measure, define, apply, improve, control
b. Impact, measure, define, control, analyze
c. Connect, control, impact, apply, analyze
d. Define, measure, analyze, improve, control-----d
Fill in the blank: Before moving into the planning phase, a project manager needs to receive _____ from the decision maker(s).
a. a project schedule
b. budgetary funds
c. resources
d. project approval-----d
When closing a project, in what meeting does the team reflect on what went well and didn't go well in the project?
a. Retrospective
b. Agile perspective
c. Stakeholder acceptance
d. Positives and negatives-----a
In which project phase does the project manager break down barriers for teammates and address weaknesses in task processes?
a. Close the project
b. Execute the project
c. Make a plan
d. Initiate the project-----b
Which project management approach is an Agile framework that delivers products through an iterative process?
a. Scrum
b. Lean
c. Six Sigma
d. Waterfall-----a
Which of the following refers to how a company arranges its employee hierarchy, divides and coordinates job tasks, and enables members of the organization to relate to one another?
a. Matrix organizational structure
b. Authoritative structure
c. Organizational structure
d. Project Management Office (PMO)-----c
Which of the following refers to an internal group that defines and maintains project standards across the organization?
a. Matrix organizational structure
b. Classic organizational structure
c. Project Planning Office (PPO)
d. Project Management Office (PMO)-----d
How does a company's organizational structure impact project management?
a. It affects the project's success rate and a team's ability to improve.
b. It affects the project manager's authority and the availability of resources.
c. It affects the project manager's authority and the success of change management.
d. It affects the success of change management and the availability of resources.-----b
Define organizational culture.
a. A company's structure, hierarchy, and goals
b. A company's income and expenses
c. A company's schedule and plans
d. A company's shared values, mission, and history-----d
Why should project managers learn about organizational culture? Select all that apply.
a. So they can demonstrate how a project supports the company's mission and values
b. So they can assign the right number of people to a project
c. So they can manage change effectively
d. So they can communicate more effectively with teams-----a, c, d
Which of the following statements is true of the change management process? Select all that apply.
a. It requires effective communication from the project manager.
b. It includes the successful delivery and adoption of a completed project.
c. It follows Waterfall methodology principles.
d. It is the sole responsibility of the project manager.-----a, b
What can a project manager do to manage changes effectively and encourage project adoption? Select all that apply.
a. Communicate clearly by being transparent and upfront with their ideas
b. Create a sense of ownership and urgency around the project
c. Avoid having team members as advocates because they may be too enthusiastic about the project
d. Encourage supervisors to use their authority to force employee adoption-----a, b
As someone interviewing for a project management role, you ask questions about how team members provide feedback, how the company celebrates success, and expectations of risk-taking. Which part of a company's culture do these questions help you learn more about?
a. Vision
b. Policies
c. Atmosphere
d. Processes-----c
As a project manager, you want to integrate change management into your project. You do this by ensuring stakeholders are aware of the upcoming changes. You introduce the deliverable to stakeholders by hosting a demonstration and a question and answer forum. These actions represent which change management best practice?
a. Be proactive
b. Practice empathy
c. Follow a consistent process
d. Use tools-----a
In business, what is the management framework within which decisions are made and accountability is determined?
a. Governance
b. Organizational culture
c. Agile
d. Change management-----a
Which of the following best describes organizational structure?
a. How members of the organization relate to and interact with one another
b. How changes are implemented within the organization
c. How the organization's identity and personality is demonstrated