forked from Sharp-Team/chia-khoa-thanh-cong-fpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SWM301.txt
5111 lines (5107 loc) · 727 KB
/
SWM301.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
# cost performance baseline is an output of | determine budget
# Cost Variance (CV) | Earned Value (EV) - Actual Cost (AC)
# Which of followings can be used to perform trend analysis to forecast future outcomes based on historical patterns ? | run chart
# Budget forecast and work performance measurement are an output of | control costs
# All of the following are important tools and techniques for developing project schedule, except | progress reports
# Which of the following is a line chart that show data points plotted in the order in which they occur | run chart
# Which tool or technique for collecting requirements is often the most expensive and time consuming
# According to Luc Richard, the founder of www.projectmangler.com, five points of using project milestones include the following, except | Keep project milestones to be medium/large and nearly frequent
# Work performance measurements are output of | Estimating activities resources
# Which of the following is a task at the lowest level of the WBS | A work package
# Which of the following describes how project requirements will be analyzed, documented, and managed | A requirements management plan
# Company A decided to build a website | Intangible benefit tangible cost
# When planning cost for the project, project manager included 10% of estimated effort in estimation of future|Contingency reserves
# AC = 50000 | -10000 -5000
# Validated changes are output of | Perform quality control
# Which of the following can we use to show if there is a relationship | Scatter diagram
# The process needs to be examined for non-random | All the others
# uses project characteristics in a mathematical model to estimate project costs | Parametric modeling
# states that when many items are produced repetitively, the unit cost of those items | Leaning curve theory
# ADM format of network diagram | Finish-to-Start
# The dependencies of Task B on Task A is Finish-to-Start | Lead
# Quality checklists and quality metrics are output of | Planning quality
# a structured review of specific quality management | Perform quality audit
# We can prevent defects by all of the followings | Carefully monitor project
# All of the following are main techniques for shortening schedules | Use multi-tasking
# to prevent defects, rather than to detect of reject them | Control chart
# Which of followings can be used to perform trend analysis to forecast future outcomes based on historical patterns | Run chart
# considers the total cost of ownership | Lifecycle costing
# Achievement, recognition, the work itself, responsibility, advancement, and growth, which produce job|Motivational factors
# is getting the right information to the right people at the right time and in a useful|Distribute information
# Douglas McGregor introduced the following the human relations theories, except|Theory Z
# In which of the following theory, McGregor assumes individuals consider work as natural as play or rest and enjoy the statisfaction of esteem|Theory Y
# Which of the following is not one project attribute?|Has one or more purposes
# An example of a project is:|Constructing a building or facility
# All of the following are basic IT project portfolio categories, except?|Transform: projects in this category can be done to open new business domain.
# ______help their organizations make wise investment decisions by helping to select and analyze projects from a strategic perspective|Portfolio managers
# Which of the following concerns on tactical goals?|Project management
# In many organizations, project managers also support an emerging business strategy of project portfolio management. Portfolio management addresses question like_____.|Are we working on the right projects?
# Quadruple Constraints of Project Management means ____constraints.|Cost, time, quality, and scope
# A program is which one of the following?|A collection of projects with a common objective
# In early phases of a traditional project life cycle, resource needs are usually ____ and the level of uncertainty is ____.|lowest, highest
# In which of the following phases, do we have to develop a Work Breakdown Structure at level +3 at least?|Development
# In which of the following phases, can we develop a definitive cost estimate?|Implementation
# All of the following are phases of the traditional project lifecycle, Except?|Coding
# Which of the following characteristics shows the degree to which work activities are organized around groups or team, rather than individuals?|Group emphasis
# Who control the project budget in balance matrix organization structure?|Both project manager and functional manager
# Project manager's authority in the project organization structure is ___________.|High to almost total
# _____ focuses on producing harmony between the needs of the organization and the needs of the people.|The human resources frame
# Develop project charter work belongs to the_________ PM Process Group.|Initiating
# Direct and manage project executing belongs to the ...... PM Process Group.|Executing
# Which is not a process group in project management (as mentioned in the PMBOK)?|Feedback
# During project plan execution:|The project manager uses corrective action to bring future performance in line with the project plan.
# In which process group do we identify human and non-human resources required for a project?|Initiating
# _______processes include coordinating people and other resources to carry out the project plans and produce the products, services, or results of the project or phase|Executing
# Which of the following outputs is often completed before initiating a project?|Business case
# Which is NOT a task that is taken in pre-initiation phase?|Develop project charter
# Which of the following processes is NOT a part of project integration management?|develop the project business case
# What is the last step in four-stage planning processes for selecting information technology project?|Resource allocation
# Which of the following is NOT a best practice for new product development projects?|select projects that will take less than two years to provide payback
# A new government law requires an organization to report data in a new way. Under which category would a new information system project to provide this data fall?|Directive
# If estimates for total discounted benefits for a project are $320,000 and total discounted costs are $200,000, what is the estimated return on investment (ROI)?|60 percent
# A____________ is a document that formally recognizes the existence of a project and provides direction on the project's objectives and management.|project management plan
# _________ ensures that the descriptions of the project's products are correct and complete.|Configuration management
# Which of the following items is not an objective of integrated change control?|Make sure that project get more money from customer
# Approximately what percentage pf the world's gross domestic product is spent on project? | 25%
# Which of the following is a not a potential advantage of using good project management? | Lower cost of capital
# A _____ is temporary endeavor undertaken to create a unique product, service, or result. | Project
# Which of the following is not an attribute of a project? | project involve little uncertainly
# Which of the following is not part of the triple constraint of project management? | meeting communication goals
# ____ is the application of knowledge, skills, tools and techniques to project activities to meet project requirements. | Project management
# Project portfolio management address ____ goals of an organization, while project management addresses ____ goals. | strategic, tactical
# Several application development projects done for the same functional group might best be managed as part of a _____. | program
# Which of the following is not one of the top ten skills or competencies of an effective project manager? | technical skills
# What is the certification program called that the Project Management Institute provides? | Project Management Professional (PMP)
# Which of the following is not part of the three-sphere model for systems management? | information
# Which of the four frames of organizations addresses how meeting are run, employee dress codes, and expected work hours? | symbolic
# Personnel in a ____ organizational structure often report to two or more bosses. | matrix
# Project work is most successful in an organizational culture where all of the following characteristics are high except _____. | control
# A _____ is a product or service, such as a technical report, a training session, or hardware, produced or provided as part of a project. | deliverable
# Which of the following is not a phase of the traditional project life cycle? | system analysis
# What the term used to describe a framework of the phases involved in developing information systems? | systems development life cycle
# Another name for a phase exit is a ____ point. | kill
# The nature of information technology projects is different from projects in many other industries because they are very ____ | diverse
# What term is used to describe when an organization acquires goods and/or sources from an outside source in another country? | offshoring
# A ____ is a series of actions directed toward a particular result. | project
# ______ processes include coordinating people and other resources to carry out the project plans and produce the products, services, or results of the project or phase | executing
# Which process group normally requires the most resources and time? | executing
# What methodology was developed in the U.K., defines 45 separate subprocesses, and organizes these into eight process groups? | PRINCE2
# Which of the following outputs is often completed before initiating a project? | business case
# A work breakdown structure, project schedule, and cost estimates are outputs of the _____ process. | planning
# Initiating involves developing a project charter, which is part of the project ______ management knowledge area. | integration
# ______ involves measuring progress toward project objectives and taking corrective actions | Monitoring and controlling
# What type of report do project teams create to reflect on what went right and what went wrong with the project? | lessons-learned report
# Many people use ____ to have a standard format for preparing various project management documents. | templates
# Which of the following processes is not part of project integration management? | develop the project business case
# What is the last step in the four-stage planning process for selecting information technology projects? | resource allocation
# Which of the following is not a best practice for new product development projects? | select projects that will take less than two years to provide payback
# A new government law requires an organization to report data in a new way. Under which category would a new information system project to provide this data fall | directive
# If estimates for total discounted benefits for a project are $120,000 and total discounted costs are $100,000, what is the estimated return on investment (ROI)? | 20 percent
# A _________ is a document that formally recognizes the existence of a project and provides direction on the projects objectives and management | project charter
# Which of the following items is not normally included in a project charter? | a Gantt chart
# _______ ensures that the descriptions of the projects products are correct and complete. | configuration management
# Which of the following is not a suggestion for performing integrated change control? | minimize change
# What tool and technique is used for all of the other project integration management processes? | expert judgment
# Four project managers are having lunch together and discussing their projects. Most of the time they are just complaining about how hard projects are to manage in their company | Improved project manager control over resources
# Two project managers have just realized that they are in a weak matrix organization and that their power as project managers is quite limited. | The project expediter cannot make decisions
# In a projectized organization the project team: | will not always have a home
# A project manager is trying to complete a software development project, but cannot get enough attention for the project. | Functional
# A project manager has very little project expenditure, but he has been assigned as the project manager of a new project | Open and accurate
# A project team member is talking to another team member and complaining that so many people are asking him to do things | The functional manager
# Who has the MOST power in a projectized organization? | The project manager
# All of the following are characteristics of a project EXCEPT: | Repeats itself every month
# All of the following are parts of the teams stakeholder management effort EXCEPT? | Giving stakeholders extras
# A manager and the head of engineering discuss a charge to a major work package. after the meeting, the manager contacts you and tells you to complete the papers work to make the change. | a project expediter position
# The project is in the planning process group when three stakeholders come to the Project manager asking for information on the companys new project management Methodology | Notify the project management office
# A project manager is managing his second project. It started one month after the First and both are ongoing. | Obtain historical records and guidance from the PMO
# The project has going well, except for the number of changes being made. The Project is being installed in to seven different departments within the company | The project should have used more of the project management Processes
# The project life cycle differs from the product life cycle in that the project life Cycle: | Describes project management activities.
# Stakeholders can be identified in which project management process group? | Initiating and planning
# Management by objectives works only if: | the project includes the objectives in the project charter.
# Your management has decided that all orders will be treated as project and that project managers will be used to update orders daily, resolving issues and | Order incurring revenue over $100,000 would be considered project and would involve project management
# One of your team members informs you that he does not know which of the many projects he is working on is the most important. | The project management office
# A project team is working on manufacturing a new product, but they are having difficulty creating a project charter. | They are working on a process and not a project
# A market demand, a business need, and/or legal requirement are examples of: | Reasons projects are initiated
# Operational work is different from project work in that it is: | On-going and repetitive
# Company procedures require the creation of a lessons learned document.Which of the following is the BEST use of lessons learned? | Historical records for future projects
# Lessons learned are BEST completed by: | The stakeholders
# Consideration of ongoing operations and maintenance is crucially important to products of projects. Ongoing operations and maintenance should: | Not be viewed as part of a project. A project is temporary with a definite beginning and end
# What is a program? | A means to gain benefits and control of related projects
# A company is making an effort to improve its project performance and create historical records of past projects. | Create lessons learned
# Project Stakeholder are: | Anybody who is actively working on the project
# An example of a project is: | Constructing a building or facility
# Company procedures require the creation of a lessons learned document. | Historical records for future projects
# Consideration of ongoing operations and maintenance is crucially important to | Not be viewed as part of a project. A project is temporary with a definite beginning and end.
# One of your team members informs you that he does not know which of the | The project management office
# All of the following are part of the team's stakeholder management effort | Giving stakeholders extras
# Direct and manage project executing belongs to the ......PM Process Group. | Executing
# Scope definition is important to the success of the project EXCEPT: | It serves as the basis for future project decisions.
# Which of the following can be used to determine what work is included in | Work Breakdown Structure Dictionary
# All of the following occur during the planning process group EXCEPT: | Develop project Charter.
# All of the following are outputs of the close project process EXCEPT: | Deliverables
# A detailed project schedule can be created only after creating the | Work breakdown structure
# Control project schedule belongs to the ________ PM Process Group. | Monitoring and Controlling
# Which of the following is not a best practice for new product development | selectprojects that will take less than two years to provide payback
# A new government law requires an organization to report data in a new way. | Directive
# Which of the following describe the BEST use of historical records from | Estimating, risk management, and project planning
# An output of the Close Project or Phase process is the creation of | Project archives
# Which of the following is not a sugge control? | minimizechange
# What approach to developing a WBS involves writing down or drawing ideas | mindmapping
# What major restaurant chain terminated a large project after spending $170 millions on it | McDonald's
# All of the following are outputs of the scope definition process EXCEPT: | Preliminary project scope statement
# The construction phase of a new software product is near completion. The next phases are testing and implementation. The project is two weeks ahead of schedule. | Verify scope
# During a project team meeting, a team member suggests an enhancement to the scope that is beyond the scope of project charter. | Scope management
# Senior management is complaining that they are not able to easily determine the status of ongoing projects in the organization. | Milestone reports
# You are the project manager for the LLL Project. Steven, a project team member, is confused about network diagrams. Specifically, he wants to know what the critical path is in a network diagram. | The critical path is the path with the longest duration
# What is the duration of a milestone? | There is no duration
# If the optimistic time estimate for an activity is 8 days, most likely time is 10 days, and pessimistic time is 24 days. What is PERT | 12
# You are the project manager for the MNB Project. You and your project team are about to enter into the activity duration estimating process. | The project contract
# A Cost Performance Index (CPI) of 0.89 means ___ At this time, we expect the total project to cost at 89 percent more than planned. | The project is only getting 89 cents out of every dollar invested.
# Which of the following represent the portion of the approved total cost estimate planned to be spenton an activity during a given period? | Planned value (PV)
# The main focus of life cycle costing is to ____ | Consider operations and maintenance costs in making project decisions.
# The project manager is allocating overall cost estimate to individual activities to establish a baseline for measuring project performance. What process is this? | Determine Budget
# Which of the following formulas is used to calculate the SPI (Schedule performance index)? | EV/PV
# What percentage of the total distribution is 1 sigma from the mean equal to? | 68.29%
# Which of the following methods is used to provide a standard to measure performance? | Benchmarking
# Which of the following statements are FALSE regarding quality audits? | Quality audits are generally performed after scope verification, but can also be
# Pareto charts help project manager _____ | Focus on most critical issues to improve quality.
# Quality is ___ | The degree to which the project meets requirements
# As the project manager, you are preparing your methods for quality management. You are looking for a method that can demonstrate the relationship between events and their resulting effects. | Ishikawa diagram
# During the first half of the project, five team member left for other projects without being replaced, two team members went on vacation without informing you, and other team members expressed uncertainty about the work they were complete. | Staffing management plan.
# According to Maslow's hierarchy of needs in which does the need for | Social needs
# Which of the following describes the theory Z style of management? | Theory Z is based on the Japanese approach to motivating workers, emphasizing trust, quality, collective decision making, and cultural values
# _____ isgetting people to do things based on a position of authority. | Legitimate power
# Who of the following are ALWAYS stakeholders? | An assembly line worker that will use the product of the project
# A particular stakeholder has a reputation for making changes on projects. What is the BEST approach Get the stakeholder involved in the project as early as possible.
# Which of the following are NOT the direct results of managing the project team? | Negotiating staff assignments
# Which of the following best describes a directly face a conflict using a problem-solving conflict resolution technique? | Confrontation
# Formal written correspondence with the customer is required when ___ | The customer requests additional work not covered under contract
# Which is the one not included in the features of a project? | Fixed operation
# Which is the correct explanation of Scope? | The sum of the products and services created as a project
# Which is not an advantage of project management? | Improve developer's skill
# Which strategic technology considers in efficient using of computer resources, social responsibility, and environmental impact? | Green IT
# Which is not a project attribute? | A project should have only one project manager and one technical leader
# Which is the correct explanation of a Stakeholder? | Individual or organization influenced by the project
# According to textbook, every project is constrained in different ways by its scope,...., and cost goals | Time
# Which is the most appropriate description that explains a project team member? | The group that carries out the work of the project
# Which of the following is likely to be part of an operation? | Providing electricity to a community
# The ________________ has well-defined, linear stages of system analysis, design, construction, testing, and support. | Waterfall lifecycle model
# Personnel in a _____________ organization structure often report to two or more bosses | Matrix
# In a projectized organization, the project team: | Will not always have a 'home'
# In which organization are the project manager's independence and authority weakest? | Functional organization
# The __________ deal with how the organization is structured and focuses on different groups' roles and responsibilities in order to meet the goals and policies set by top management | Structural frame
# Which of the following statements is not true? | Cultural differences will always be an obstacle to overcome.
# In... ... .... Organization structure type, project manager has "Moderate to high" authority | Strong Matrix
# In Balanced Matrix Organization Structure type, .... will control the project budget. | In Balanced Matrix Organization Structure type, .... will control the project budget. | Mixed (Functional manager and PM)
# Which of the following statements best describes the relationship between project lifecycle phases and project management processes? | Project management processes can repeat within a project lifecycle.
# The amount of authority a project manager possesses can be related to | The organization structure
# What is core of the advantages of a functional organization? | All employees report to one manager and have a clear chain of command
# Which is not a disadvantage of virtual teams? | Increasing costs because it requires office space or requires more support
# Which is the most appropriate description of the stakeholder's influence on the project life cycle? | Maximum at the start and then gradually weakens towards the end of the project.
# The ________________ has well-defined, linear stages of system analysis, design, construction, testing, and support. | Waterfall lifecycle model
# Personnel in a _____________ organization structure often report to two or more bosses | Matrix
# In a projectized organization, the project team: | Will not always have a 'home'
# Develop project charter work belongs to the_________ PM Process Group. | Initiating
# Direct and manage project executing belongs to the ...... PM Process Group. | Executing
# Which is not a process group in project management lifecycle (as mentioned in the PMBOK)? | Feedback process group
# During project plan execution: | The project manager uses corrective action to bring future performance in line with the project plan.
# What is the last step in the four-stage planning process for selecting information technology projects? | resource allocation
# In which process group do we identify human and non-human resources required for a project? | Initiating
# _______processes include coordinating people and other resources to carry out the project plans and produce the products, services, or results of the project or phase | Monitoring and controlling
# Which of the following outputs is often completed before initiating a project? | Business case
# Which is not a task that is taken in pre-initiation phase? | Develop project charter
# Define activities and sequence activities belong to the__________PM Process Group. | Planning
# Report performance belongs to the ________ PM Process Group. | Monitoring and Controlling
# Perform quality assurance belong to the ________ PM Process Group. | Executing
# Control project schedule belongs to the ________ PM Process Group. | Monitoring and Controlling
# Which of the following processes is not part of project integration management? | develop the project business case
# What is the last step in four-stage planning processes for selecting information technology project? | resource allocation
# Which of the following items is not a step in four-stage planning processes for selecting IT project? | mind mapping
# Which of the following is not a best practice for new product development projects? | select projects that will take less than two years to provide payback
# A new government law requires an organization to report data in a new way. Under which category would a new information system project to provide this data fall? | Directive
# If estimates for total discounted benefits for a project are $130,000 and total discounted costs are $100,000, what is the estimated return on investment (ROI)? | 30 percent
# A____________ is a document that formally recognizes the existence of a project and provides direction on the project's objectives and management. | project chapter (sai:management plan)
# Which of the following items is not normally included in a project charter? | a Gant chart
# _________ ensures that the descriptions of the project's products are correct and complete. | Configuration management
# Which of the following is not a suggestion for performing integrated change control? | minimize change
# Which of the following items is not an objective of integrated change control? | Make sure that project get more money from customer
# The project schedule information section should include the following items, except for | Payment schedule
# The section of the project management plan describing management and technical approaches should include the following information, except for | Summary schedule
# Which tool or technique for collecting requirements is often the most expensive and time consuming? | interview
# A__________________ is a deliverable-oriented grouping of the work involved in a project that defined the total scope of the project | WBS
# What approach to developing a WBS involves writing down or drawing ideas in a nonlinear format? | mind mapping
# Assume you have a project with major categories called planning, analysis, design, and testing. What level of the WBS would these items fall under? | 2
# Which of the following is not a best practice that can help in avoiding scope problems on information technology project? | Don't involve too many users in scope management
# What major restaurant chain terminated a large project after spending $170 millions on it, primarily because they realized the project scope was too much to handle? | McDonald's
# Scope________ is often achieved by a customer inspection and then sign-off on key deliverables. | verification
# Which of the following is not a suggestion for improving user input? | Only have meetings as needed, not on a regular basis
# Project management software helps you develop a __________, which serves as basis for creating Gantt charts, assigning resources, and allocating costs | WBS
# The project scope statement, __________, and organizational process assets are primary inputs for creating a WBS. | Requirements documents
# ________________ refer(s) to all the project work involved in creating the products of the project and processes used to create them. | Scope
# Which of the following items is not a primary output of Create WBS process? | Project Charter
# Which of the following items is not a primary input for Scope Verification process? | Project reports
# Michael is the project manager of the 98GH Project. This project requires several members of the project team to complete a certification class for another project the week of November 2. | External dependencies
# You are the project manager for the LLL Project. Steven, a project team member, is confused about network diagrams. Specifically | The critical path is the path with the longest duration
# What is the difference between PDM and ADM? | ADM places activities on arrows; PDM places activities on nodes.
# You are the project manager for the POL Project. This project will use PERT to calculate the estimates for activity duration. For activity D, you have the following information: P=10 days, O=6 days, M=5 days. What is the result of PERT? | 6 days
# You are the project manager for the MNB Project. You and your project team are about to enter into the activity duration estimating process. Which of the following will not be helpful in your meeting? | The project contract
# Which of the following is not an output from the activity duration estimating process? | WBS
# Which of the following is not an output of activity resource estimation process? | WBS Dictionary
# Which of the following is not a primary input of activity duration estimation process? | WBS Dictionary
# You are the project manager for the 987 Project. Should this project run over schedule, it will cost your organization $35,000 per day in lost sales. With four months to completion, you realize the project is running late. You decide, with management's approval, to add more project team members to the project plan to complete the work on time. This is an example of which of the following? | Crashing
# You are the project manager for the 987 Project. Should this project run over schedule, it will cost your organization $35,000 per day in lost sales. With four months to completion, you realize the project is running late. You decide, with management's approval, to change the relationship between several of the work packages so they begin in tandem rather than sequentially. This is an example of which one of the following? | Fast tracking
# Bertha is the project manager for the HAR Project. The project is behind schedule and Bertha has elected, with management's approval, to crash the critical path. This process adds more what? | Cost
# _________ is a technique for making cost and schedule trade-offs to obtain the greatest amount of schedule compression for the least incremental cost. | Crashing
# Which is not an activity of Time management knowledge area? | Project Plan Development
# Which of the following choices indicates that a project has a burn rate of 1.5? | The AC is 100 and the EV is 150.
# Schedule variance can be determined by: | EV - PV
# Project Cost Management includes all of the following except: | Resource leveling
# Earned value is all of the following except: | Actual cost of work performed.
# During the six month update on a 1 year, $50,000 project, the analysis shows that the PV is $25,000; the EV is $20,000 and the AC is $15,000. What can be determined from these figures? | The project is behind schedule and under cost
# The inputs to Cost Budgeting includes all of the following except: | Cost baseline
# Parametric cost estimating involves: | Using rates and factors based on historical experience to estimate costs.
# How close to actual costs should a definitive budget estimate be? | -5 percent to +10 percent
# The main focus of life cycle costing is to: | Consider operations and maintenance costs in making project decisions
# Which type of cost is team training? | Direct
# __________is a project performance measurement technique that integrates scope, time, and cost data | Earned value analysis
# A rough order of magnitude estimate is made during which project management process group? | Project initiating
# A schedule performance index(SPI) of 0.76 means: | you are only progressing at 76 percent of the rate originally planned.
# During the completion of the project, a project manager wants to ensure that the quality of the end product is acceptable. The BEST way to do this is by: | checking quality levels against the standards set in the quality plan.
# The line in the middle of a control chart is called the | mean
# A project team has invited many of the project stakeholders to help them inspect quality on the project. Which of the following would NOT be an output of this activity? | Quality management plan
# All of the following are outputs of quality planning EXCEPT? | Acceptance decisions
# Who is ultimately responsible for quality management in the project? | Project manager
# A project team member comes to the project manager during project execution to tell him that they feel the project cannot meet its quality standards. The project manager calls a meeting of the affected stakeholders to work through the problem. | Quality assurance
# The process of monitoring specific project results to determine if they comply with relevant quality standards is called: | Quality Control
# _________ is the degree to which a set of inherent characteristics fulfils requirements, | Quality
# Which of the following methods is used to provide a standard to measure performance? | Benchmarking
# The purpose of a quality audit includes all of the following except: | Examines the work of the project and formally accepts the work results
# Which of the following is the cost of evaluating processes and their outputs to ensure that a project is error-free or within an accepted or rejected? | appraisal cost
# Which of the following is the cost incurred to correct an identified defect before the customer receives the product? | internal failure cost
# Which of the following is not part of project human resource management? | Resource estimating
# ___________causes people to participate in an activity for their own enjoyment. | Intrinsic motivation
# At the bottom of Maslow's pyramid or hierarchy of needs are _____ needs | Physiological
# At the top of Maslow's pyramid or hierarchy of needs are _____ needs | self- actualization
# According to McClelland's acquired needs theory, people who desire harmonious relation with other people and need to feel accepted have a high_______ need. | Affiliation
# ________ power is based on a person's individual charisma. | Referent
# A________ maps the work of a project as described in the WBS to the people responsible for performing the work. | responsibility assignment matrix
# A staffing management plan often includes a resource ___________, which is a column chart that shows the number of resources assigned to the project overtime. | Histogram
# What technique can you use to resolve resource conflicts by delaying tasks? | resource leveling
# What are five stages in Tuckman's model of team development, in chronological order? | forming, storming, norming, performing, and adjourning
# ________ is a document that describes when and how people will be added to and taken off a project team. | Staffing management plan
# _____ is getting people to do things based on a position of authority. | Legitimate power
# ____________involves using incentives to include people to do things. | Reward power
# What do many experts agree is the greatest threat to the success of any project? | a failure to communicate
# Which communication skill is most important for information technology professionals for career advancement? | speaking
# Which of the following is not a process of communication management? | Acquiring project team
# A_______ is an approach to help increase the support of stakeholders throughout the project | stakeholder management strategy
# Which of the following is not a preferred section in communication plan? | Training activities
# A_____ report describes where the project stands at a specific point time. | status
# What tool can you use to help manage stakeholders by ranking scope, time, and cost goals in order of important and provide guidelines on balancing these constraints? | issue log
Which of the following describes the assumptions of the theory Y style of management? | Theory Y assumes individuals consider work as natural as play or rest and enjoy the satisfaction of esteem and self-actualization needs
# When using the ________, project managers directly face a conflict using a problem-solving approach that allows affected parties to work through their disagreements. | confrontation mode
# When using the ________, the project manager deemphasizes or avoids areas of differences and emphasizes areas of agreement. | smoothing mode
# You have two project stakeholders who do not get along at all. You know they both enjoy travelling, so you discuss great travel destinations when they are both in the room together to distract them from arguing with each other. | smoothing mode
# Which of the following is not a guideline to help improve time spent at meetings? | Invite extra people who support your project to make it run more smoothly
# A_______ report if a reflective statement documenting important things that people learned from working on the project. | lessons-learned
# When using the _________, project managers retreat or withdraw from actual or potential disagreement. This approach is also called avoiding mode. | Withdrawal mode
# Which is not a process in the Risk Management knowledge area? | Risk Design
# Contingency reserves are used to handle which type of risk? | Known unknowns
# Which of the following statements is false? | Uncertainty and risk are lowest at the start of the project and greatest at the end
# A risk response which involves reducing the impact of a risk event by reducing the probability of its occurrence is called: | Mitigation
# When should a risk be avoided? | When the risk event is unacceptable -- generally one with a very high probability of occurrence and high impact.
# An example of risk mitigation is: | Using proven technology in the development of a product to lessen the probability that the product will not work
# A risk ________ is a document that contains results of various risk management processes, often displayed in a table or spreadsheet format. | register
# Suppose there is a 20 percent chance that you will earn $10,000 and a 80 percent chance that you will lose $100,000 on a particular protect. What is the projects estimated monetary value? | -$78.000
# Which is not included in Risk Response Planning? | Enhancement
# In general, for which phase is risk and uncertainty minimum? | Final phase
# What is a risk trigger? | Indicator of the risk
# Risks are accepted when: | You develop a contingency plan to execute should the risk event occur
# The principles of risk management should be followed only for: | All kinds of project
# Which type of contract has the least amount of risk for buyer | fixed-price
# Which type of contract has the least amount of risk for seller | cost plus percentage of costs
# An item you need for a project has a daily lease cost of $200. To purchase the item, there is an investment cost of $6000 and a daily cost of $50. Calculate the number of days when the lease cost would be the same as the purchase cost. | 40
# A proposal evaluation sheet is an example of a(n) ________________ | weighted scoring model
# Your organization hired a specialist in a certain field to provide training for a short period of time. Which reason for outsourcing would this fall under? | accessing skills and technologies
# Buyers often prepare a _____________ list when selecting a seller to make this process more manageable. | short
# A unilateral contract under which the seller is paid a preset amount per unit of service is called: | A unit price contract
# If your college or university wanted to get information from potential sellers for providing a new sports stadium, what type of document would they require of the potential sellers? | Proposal
# In which project procurement management process is an RFQ often written? | planning procurements
# Which of the following contract types places the greatest risk on the seller? | Firm-fixed-price contract
# The _____________ is the point at which the contractor assumes total responsibility for each additional dollar of contract cost. | Point of Total Assumption
# ________________ is a term used to describe various procurement functions that are now done electronically | E-procurement
# How is a functional organization set up? | A functional organization is grouped by areas of specialization, e.g. accounting, marketing, and manufacturing).
# When you see the functional form of organization on the exam, think ___ | "silo"
# How is a projectized organization set up? | In a projectized organization, the entire company is organized by projects. Personnel are assigned and report to a project manager.
# A work breakdown structure numbering system allows the project staff to: | Identify the level at which individual elements are found
# The work breakdown structure can BEST be thought of as an effective aid for __ communications. | Stakeholder
# Which of the following is a KEY output of the Verify Scope process? | Customer acceptance of project deliverables
# During project executing, a team member comes to the project manager because he is not sure of what work he needs to accomplish on the project. Which of the following documents contain detailed descriptions of work packages? | WBS dictionary
# During what part of the project management process is the project scope statement created? | Planning
# The program was planned years ago, before there was a massive introduction of new technology. While planning the next project in this program, the project manager has expanded the scope management plan because as a project becomes more complex, the level of uncertainty in the scope: | Increases
# During a meeting with some of the project stakeholders, the project manager is asked to add work to the project scope. The project manager had access to correspondence about the project before the project charter was signed and remembers that the project sponsor specifically denied funding for the scope mentioned by these stakeholders. | Tell the stakeholders the scope cannot be added
# A new project manager is being mentored by a more experienced certified project management professional ("PMP"). The new project manager is having difficulty finding enough time to manage the project because the product and project scope are being progressively elaborated. | Communicating with the customer
# During a project team meeting, a team member suggests an enhancement to the scope that is beyond the scope of the project charter. The project manager points out that the team needs to concentrate on completing all the work and only the work required. This is an example of: | Scope management
# When should the Verify Scope process be done? | At the end of each phase of the project
# The project is mostly complete. The project has a schedule variance of 300 and a cost variance of -900. All but one of the quality control inspections have been completed and all have met the quality requirements. All items in the issue log have been resolved. | Ask the customer for a description of the change
# You have just joined the project management office after five years of working on projects. One of the things you want to introduce to your company is the need to create and utilize WBSs. Some of the project managers are angry that you are asking them to do "extra work". | Tell them it will prevent work from slipping through the cracks
# A new project manager has asked you for advice on creating a work breakdown structure. After you explain the process to her, she asks you what software she should use to create the WBS and what she should do with it when she is finished creating it. | Team buy-in
# To manage a project effectively, work should be broken down into small pieces. Which of the following does NOT describe how far to decompose the work? | Until it can be done by one person
# A project manager may use to make sure the team members clearly know what work is included in each of their work packages. | A WBS dictionary
# A project manager has just been assigned to a new project and has been given the project charter. The FIRST thing the project manager must do is: | Confirm that all the stakeholders have had input into the scope
# The construction phase of a new software product is near completion. The next phases are testing and implementation. The project is two weeks ahead of schedule. What should the project manager be MOST concerned with before moving on to the final phase? | Verify Scope
# You are managing a six-month project and have held biweekly meetings with your project stakeholders. After five-and-a-half months of work, the project is on schedule and budget, but the stakeholders are not satisfied with the deliverables. This situation will delay the project completion by one month. The MOST important process that could have prevented this situation is: | Define Scope
# All of the following are parts of the scope baseline EXCEPT the: | Scope management plan
# One of the stakeholders on the project contacts the project manager to discuss some additional scope they would like to add to the project. The project manager asks for details in writing and then works through the Control Scope process. What should the project manager do NEXT when the evaluation of the requested scope is complete? | Complete integrated change control
# During the completion of project work, the sponsor asks the project manager to report on how the project is going. In order to prepare the report, the project manager asks all the team members what percent complete their work is. There is one team member who has been hard to manage from the beginning. In response to being asked what percent complete he is, the team member asks, "Percent complete of what?" Being tired of such comments, the project manager reports to the team members boss that the team member is not co operating. Which of the following is MOST likely the real problem? | The project manager does not have work packages
# The preparation of the scope baseline can BEST be described as involving: | The project team
# Which of the following is an output of the Collect Requirements process? | Requirements traceability matrix
# A scope change has been suggested by one of the stakeholders on the project. After careful consideration and a lot of arguing, the change control board has decided to reject the change. What should the project manager do? | Record the change request and its result
# A project manager's scope management efforts are being audited. The cost performance index (CPI) on the project is 1.13, and the benefit cost ratio (BCR) is 1.2. The project scope was created by the team and stakeholders. Requirements on the project have been changing throughout the project. | Not being able to measure completion of the product of the project
# Verify Scope is closely related to: | Perform Quality Control
# Which of the following can create the MOST misinterpretation in the project scope statement? | Imprecise language
# Which of the following is CORRECT in regard to the Control Scope process? | The Scope Control process must be integrated with other control processes
# Which ofthe following BEST describes the Verify Scope process? | It ensures customer acceptance, shows that the deliverable meets specifications, and provides a chance for differences of opinion to come to light
# Which of the following BEST describes product analysis? | Gaining a better understanding of the product of the project in order to create the project scope statement
# One common way to compute estimate at completion (EAC) is to take the budget at completion (BAC) and: | Divide by CPI
# Estimate at completion (EAC) is a periodic evaluation of: | The anticipated total cost at project completion
# If earned value (EV) = 350, actual cost (AC) = 400, planned value (PV) = 325, what is cost variance (CV)? | -50
# The customer responsible for overseeing your project asks you to provide a written cost estimate that is 30 percent higher than your estimate of the project's cost. He explains that the budgeting process requires managers to estimate pessimistically to ensure enough money is allocated for projects. | Ask for information on risks that would cause your estimate to be too low
# Analogous estimating | Uses top-down estimating techniques
# All of the following are outputs of the Estimate Costs process EXCEPT: | The prevention of inappropriate changes from being induded in the cost baseline
# The main focus of life cycle costing is to | Consider operations and maintenance costs in making project decisions
# Cost performance measurement is BEST done through which of the following? | Calculating earned value and using the indexes and other calculations to
# A cost performance index (CPI) of 0.89 means | The project is only getting 89 cents out of every dollar invested
# A schedule performance index (SPI) of 0.76 means: | You are only progressing at 76 percent of the rate originally planned
# Which of the following is NOT needed in order to come up with a project estimate? | A change control system
# Which of the following is an example of a parametric estimate? | Dollars per module
# A rough order of magnitude estimate is made during which project management process group? | Initiating
# A cost baseline is an output of which cost management process? | Determine Budget
# During which project management process group are budget forecasts created? | Monitoring and controlling
# Which type of cost is team training? | Direct
# Project setup costs are an example of: | Fixed costs
# Value analysis is performed to get | A less costly way of doing the same work
# Who has the cost risk in a fixed price (FP) contract? | The seller
# Which of the following represents the estimated value of the work actually accomplished? | Earned value (EV)
# Which of the following are ALL items included in the cost management plan? | Specifications for how estimates should be stated, rules for measuring cost performance, the level of accuracy needed for estimates
# Your project has a medium amount of risk and is not very well defined. The sponsor hands you a project charter and asks you to confirm that the project can be completed within the project cost budget. What is the BEST method to handle this? | Build the estimate in the form of a range of possible results
# The cost contingency reserve should be: | Added to the base costs of the project to account for risks
# The seller tells you that your activities have resulted in an increase in their costs. You should: | Ask the seller for supporting information
# Your cost forecast shows that you will have a cost overrun at the end of the project. Which of the following should you do? | Eliminate risks in estimates and reestimate
# A new store development project requires the purchase of various equipment, machinery, and furniture. The department responsible for the development recently centralized its external purchasing process and standardized its new order system. In which document can these new procedures be found? | Organizational policies
# Early in the life of your project, you are having a discussion with the sponsor about what estimating techniques should be used. You want a form of expert judgment, but the sponsor argues for analogous estimating. It would be BEST to: | Agree to analogous estimating, as it is a form of expert judgment
# You have just completed the initiating processes of a small project and are moving into the planning processes when a project stakeholder asks you for the projects budget and cost baseline. What should you tell her? | The project budget and baseline will not be finalized and accepted until the planning processes are completed
# The project manager is allocating overall cost estimates to individual activities to establish a baseline for measuring project performance. What process is this? | Determine Budget
# Monitoring cost expended to date in order to detect variances from the plan occurs during: | Product performance reviews
# A cost management plan contains a description of | The WBS level at which earned value will be calculated
# A manufacturing project has a schedule performance index (SPI) of 0.89 and a cost performance index (CPI) of 0.91. Generally, what is the BEST explanation for why this occurred? | A critical path activity took longer and needed more labor hours to complete
# Although the stakeholders thought there was enough money in the budget, halfway through the project the cost performance index (CPI) is 0.7. To determine the root cause, several stakeholders audit the project and discover the project cost budget was estimated analogously. | Bottom-up estimating should have been used
# Earned value analysis is an example of | Performance reporting
# You are about to take over a project from another project manager and find out the following information about the project. Activity Z has an early start (ES) of day 15 and a late start (LS) of day 20. Activity Z is a difficult activity. The cost performance index (CPI) is 1.1. The schedule performance index (SPI) is 0.8. There are 11 stakeholders on the project.| Schedule
# The difference between the cost baseline and the cost budget can be BEST described as: | The management reserve
# You provide a project cost estimate for the project to the project sponsor. He is unhappy with the estimate, because he thinks the price should be lower. He asks you to cut 15 percent off the project estimate. What should you do? | Inform the sponsor of the activities to be cut
# Cost risk means | There is a risk that project costs could go higher than planned
# A project manager needs to analyze the project costs to find ways to decrease costs. It would be BEST if the project manager looks at: | Direct costs and variable costs
# Effective project integration usually requires an emphasis on | Effective communications at key interface points
# The need for ___ is one of the major driving forces for communication in a project. | Integration
# Which of the following describes the BEST use of historical records from previous projects: | Estimating, risk management, and project planning
# When it comes to changes, the project manager's attention is BEST given to: | Preventing unnecessary changes
# A project manager has managed four projects for the company and is being considered to join the project management office team. The following is discovered during the evaluation of his performance. The project manager's first project had an ending cost variance of -500, used two critical resources, needed to rework the project charter during project executing and was ranked 14th in priority within the company. The second project finished with a schedule variance of +100. | The project manager did not effectively involve the stakeholders, showing that he does not have the knowledge to work in the project management office
# All of the following are parts of an effective change management plan EXCEPT: | Lessons learned
# A work authorization system can be used to: | Manage what time and in what sequence work is done
# A project is plagued by changes to the project charter. Who has the primary responsibility to decide if these changes are necessary? | The sponsor
# Integration is done by the: | Project manager
# Which of the following BEST describes the project manager's role as an integrator? | Put all the pieces of a project into a cohesive whole
# Approved corrective action is an input to: | Direct and Manage Project Execution
# Double declining balance is a form of: | Accelerated depreciation
# You are a new project manager who has never managed a project before. You have been asked to plan a new project. It would be BEST in this situation to rely on ____ during planning in order to improve your chance of success. | Historical information
# Which of the following BEST describes a project management plan? | Risk, staffing, process improvement, and other management plans
# You are taking over a project and determine the following: | Schedule
# A project management plan should be realistic in order to be used to manage the project. Which of the following is the BEST method to achieve a realistic project management plan? | Project manager creates the project management plan based on input from the team
# You are taking over a project during the planning process group and discover that six individuals have signed the project charter. Which of the following should MOST concern you? | Spending more time on configuration management
# The project charter for a project was approved for planning and you have just been assigned as project manager. Realizing that project planning is an ongoing effort throughout the project, which processes are you MOST likely to combine? | Create WBS and Define Activities
# All of the following are parts of Direct and Manage Project Execution EXCEPT: | Setting up a project control system
# A project manager is appointed to head a highly technical project in an area with which this person has limited familiarity. The project manager delegates the processes of Develop schedule, Estimate Costs, Define Activities, and Estimate Activity Resources to various project team members, and basically serves as an occasional referee and coordinator of activities. | A team that is characterized by poor performance, low morale, high levels of conflict and high turnover
# You are in the middle of executing a major modification to an existing product when you learn that the resources promised at the beginning of the project are not available. The BEST thing to do is to: | Explain the impact if the promised resources are not made available
# You have been assigned to manage the development of an organization's first Web site. The site will be highly complex and interactive, and neither your project team nor the client has much experience with Web site development. The timeline is extremely aggressive. And delay will be costly for both your firm and the client. You have a project sponsor and have achieved agreement and sign-off on both the project charter and the project management plan. | A key stakeholder was not adequately involved in the project
# The project manager has just received a change from the customer that does not affect the project schedule and is easy to complete. What should the project manager do FIRST? | Evaluate the impacts on other project constraints
# Your company just won a major new project. It will begin in three months and is valued at $2,000,000. You are the project manager for an existing project. What is the FIRST thing you should do once you hear of the new project? | Ask management how the new project will affect your project
# You are a project manager who was just assigned to take over a project from another project manager who is leaving the company. The previous project manager tells you that the project is on schedule, but only because he has constantly pushed the team to perform. What is the FIRST thing you should do as the new project manager? | Determine a management strategy
# You are assigned as the project manager in the middle of the project. The project is within the baselines, but the customer is not happy with the performance of the project. What is the FIRST thing you should do? | Meet with the customer
# It is the middle of the project when the project manager is informed by her scheduler that the project control limits are secure. That same morning she receives a note from a team member about a problem he is having. The note says, "This activity is driving me crazy and the manager of the accounting department won't help me until the activity's float is in jeopardy." In addition, the project manager has e-mails from a minor stakeholder and 14 e-mails from team members. | Add the implemented corrective action to the historical records, discuss the value of documentation at the next team meeting, and smooth the team member with the accounting department problem
# The client demands changes to the product specification that will add only two weeks to the critical path. Which of the following is the BEST thing for the project manager to do? | Consult with the sponsor about options
# During project executing, the project manager determines that a change is needed to material purchased for the project. The project manager calls a meeting of the team to plan how to make the change. This is an example of: | Lack of a change management plan
# The project was going well when all of a sudden there were changes to the project coming from multiple stakeholders. After all the changes were determined, the project manager spent time with all the stakeholders to find out why there were changes and to discover any more. The project work has quieted down when a team member casually mentions to the project manager that he added functionality to a product of the project. "Do not worry," he says, "I did not impact time, cost, or quality!" What should a project manager do FIRST? | Ask the team member how he knows there is no time, cost, or quality impact
# You are asked to prepare a budget for completing a project that was started last year and then shelved for six months. All the following would be included in the budget EXCEPT: | Sunk costs
# Which of the following sequences represents straight line depreciation? | $100, $100, $100
# This project is chartered to determine new ways to extend the product life of one of the company's medium-producing products. The project manager comes from the engineering department, and the team comes from product management and marketing departments. | Look for how this schedule change will impact the cost to complete the work package and the quality of the product of the work package
# Project A has an internal rate of return (IRR) of 21 percent. Project B has an IRR of 7 percent. Project C has an IRR of 31 percent. Project D has an IRR of 19 percent. | Project C
# All of the following would occur during the Close Project or phase process EXCEPT: | Performing benefit cost analysis
# Which of the following is included in a project charter? | The business need for the project
# A project manager is trying to convince management to use more formal project management procedures and has decided to start improving the company's project management by obtaining a project charter. Wich of the following BEST describes why the project charter would help the project manager? | It gives the project manager authority
# Linear programming is an example of what type of project selection criteria? | Constrained optimization
# You have created the project charter, but could not get it approved. Your manager and his boss have asked that the project begins immediately. Which of the following is the BEST thing to do | Show your manager the impact of proceeding without approval
# The engineering department has uncovered a problem with the cost accounting system and has asked the systems department to analyze what is wrong and fix the problem. You are a project managerr working with the cost accounting programs on another project. Management has issued a change request to the change control board to add the new work to your project. | Develop a project charter
# All technical work is completed on the project. Which of the following remains to be done | Complete lessons learned
# Your company can accept one of the three posible projects. Project A has a net present value (NPV) of $30,000 and will take six years to complete. Project B has a net present value of $60,000 and will take three years to complete. Project C has an NPV of $90,000 and will take four years to complete. | Project C
# All of the following are factors in the assessment of project risk EXCEPT: | Insurance premiums
# If a project has a 60 percent chance of a $100,000 profit and a 40 percent chance of a $100,000 loss, the expected monetary value for the project is: | $20,000 profit
# Assuming that the ends of a range of estimates are +/- 3 sigma from the mean, which of the following range estimates involves the LEAST risk? | Optimistic = 26 days, most likely = 30 days, pessimistic = 33 days
# Which of the following risk events is MOST likely to interfere with attaining a project's schedule objective? | Delays in obtaining required approvals
# If a risk has a 20 percent chance of happening in a given month, and the project is expected to last five months, what is the probability that this risk event will occur during the fourth month of the project? | 20 percent
# If a risk event has a 90 percent chance of occurring, and the consequences will be $10,000, what does $9,000 represent? | Expected monetary value
# Risks will be identified during which risk management process(es)? | Identify Risks and Monitor and Control Risks
# What should be done with risks on the watchlist? | Document them and revisit during project monitoring and controlling
# All of the following are ALWAYS inputs to the risk management process EXCEPT: | Project status reports
# Risk tolerances are determined in order to help: | The team rank the project risks
# All of the following are common results of risk management EXCEPT: | The project charter is changed
# Purchasing insurance is BEST considered an example of risk: | Transfer
# You are finding it difficult to evaluate the exact cost impact of risks. You should evaluate on a(n): | Qualitative basis
# Outputs of the Plan Risk Responses process include: | Residual risks, fallback plans, and contingency reserves
# Workarounds are determined during which risk management process? | Monitor and Control Risks
# During which risk management process is a determination to transfer a risk made? | Plan Risk Responses
# A project manager has just finished the risk response plan for a $387,000 engineering project. Which of the following should he probably do NEXT? | Add work packages to the project work breakdown structure
# A project manager asked various stakeholders to determine the probability and impact of a number of risks. He then analyzed assumptions. He is about to move to the next step of risk management. Based on this information, what has the project manager forgotten to do? | Provide a standardized risk rating matrix
# A project manager has assembled the project team, identified 56 risks on the project, determined what would trigger the risks, rated them on a risk rating matrix, tested their assumptions, and assessed the quality of the data used. The team is continuing to move through the risk management process. What has the project manager forgotten to do? | Involvement of other stakeholders
# You are a project manager for the construction of a major new manufacturing plant that has never been done before. The project cost is estimated at $30,000,000 and will make use of three sellers. Once begun, the project cannot be cancelled, as there will be a large expenditure on plant and equipment. | Perform an identification of risks
# During the Plan Risk Management process, your team has come up with 434 risks and 16 major causes of those risks. The project is the last of a series of projects that the team has worked on together. The sponsor is very supportive, and a lot of time was invested in making sure the project work was complete and signed off by all key stakeholders. | Accept the risk
# A project manager is quantifying risk for her project. Several of her experts are offsite, but wish to be included. How can this be done | Apply the Delphi technique
# An experienced project manager has just begun working for a large information technology integrator. Her manager provides her with a draft project charter and immediately asks her to provide an analysis of the risks on the project. Which of the following would BEST help in this effort? | A conversation with a team member from a similar project that failed in the past
# You have been appointed as the manager of a new, large, and complex project. Because this project is business-critical and very visible, senior management has told you to analyze the project's risks and prepare response strategies for them as soon as possible. The organization has risk management procedures that are seldom used or followed, and has had a history of handling risks badly. | Project sponsor
# You were in the middle of a two-year project to deploy new technology to field offices across the country. A hurricane caused power outages just when the upgrade was near completion. When the power was restored, all of the project reports and historical data were lost with no way of retrieving them. What should have been done to prevent this problem? | Monitor the weather and have a contingency plan
# A system development project is nearing project closing when a previously unidentified risk is discovered. This could potentially affect the project's overall ability to deliver. What should be done NEXT? | Qualify the risk
# The cost performance index (CPI) of a project is 0.6 and the schedule performance index (SPI) is 0.71. The project has 625 work packages and is being completed over a four-year period. The team members are veryinexperienced, and the project received little support for proper planning. Which of the following is the BEST thing to do? | Update risk identification and analysis
# While preparing your risk responses, you identify additional risks. What should you do? | Document the risk items, and calculate the expected monetary value based on probability and impact that result from the occurrences
# You have just been assigned as the project manager for a new telecommunications project that is entering the second phase of the project. There appear to be many risks on this project, but no one has evaluated them to assess the range of possible project outcomes. What needs to be done? | Plan Risk Management
# During project executing, a team member identifies a risk that is not in the risk register. What should you do? | Analyze the risk
# During project executing, a major problem occurs that was not included in the risk register. What should you do FIRST? | Create a workaround
# The customer requests a change to the project that would increase the project risk. Which of the following should you do before all the others? | Analyze the impacts of the change with the team.
# Which of the following is a chief characteristic of the Delphi technique | Expert opinion
# A project has had some problems, but now seems under control. In the last few months, almost all the reserve has been used up and most of the negative impacts of events that had been predicted have occurred. There are only four activities left, and two of them are on the critical path. Management now informs the project manager that it would be in the performing organizations best interest to finish the project two weeks earlier than scheduled in order to receive an additional profit. | Opportunities
# Monte Carlo analysis is used to: | Get an indication of the risk involved in the project
# A project team is creating a project management plan when management asks them to identify project risks and provide some form of qualitative output as soon as possible. What should the project team provide? | Prioritized list of project risks
# A project manager is creating a risk response plan. However, every time a risk response is suggested, another risk is identified that is caused by the response. Which of the following is the BEST thing for the project manager to do? | Document the new risks and continue the Plan Risk Responses process
# A watchlist is an output of which risk management process? | Perform Qualitative Risk Analysis
# During the Identify Risks process, a project manager made a long list of risks identified by all the stakeholders using various methods. He then made sure that all the risks were understood and that triggers had been identified. Later, in the Plan Risk Responses process, he took all the risks identified by the stakeholders and determined ways to mitigate them. What has he done wrong? | More people should be involved in the Plan Risk Responses process
# Which of the following MUST be an agenda item at all team meetings? | Discussion of project risks
# Once signed, a contract is legally binding unless: | It is in violation of applicable law
# With a clear contract statement of work, a seller completes work as specified, but the buyer is not pleased with the results. The contract is considered to be: | Complete
# All of the following statements concerning procurement documents are incorrect EXCEPT: | Well-designed procurement documents can simplify comparison of responses
# A project manager for the seller is told by her management that the project should do whatever possible to be awarded incentive money. The primary objective of incentive clauses in a contract is to: | Synchronize objectives
# All the following statements about change control are incorrect EXCEPT: | Contracts should include procedures to accommodate changes
# A routine audit of a cost reimbursable (CR) contract determines that overcharges are being made. If the contract does not specify corrective action, the buyer should: | Continue to make project payments
# The primary objective of contract negotiations is to: | Protect the relationship
# A seller is working on a cost reimbursable (CR) contract when the buyer decides he would like to expand the scope of services and change to a fixed price (FP) contract. All of the following are the seller's options EXCEPT: | Starting over with a new contract
# Bidder conferences are part of: | Conduct Procurements
# All of the following MUST be present to have a contract EXCEPT: | Address of the seller
# Which of the following BEST describes the project manager's role during the procurement process? | The project manager should supply an understanding of the risks of the project
# What is one of the KEY objectives during contract negotiations? | Obtain a fair and reasonable price
# Which ofthe following activities occurs during the Plan Procurements process? | Make-or-buy decisions
# Which of the following is the BEST thing for a project manager to do in the Conduct Procurements process of procurement management? | Answer sellers' questions about bid documents
# The sponsor is worried about the seller deriving extra profit on the cost plus fixed fee (CPFF) contract. Each month he requires the project manager to submit CPI calculations and an analysis of the cost to complete. The project manager explains to the sponsor that extra profits should NOT be a worry on this project because: | All costs invoiced are being audited
# In a fixed price (FP) contract, the fee or profit is: | Unknown
# A project performed under a cost reimbursable contract has finally entered the Close Procurements process. What MUST the buyer remember to do? | Audit seller's cost submittals
# The sponsor and the project manager are discussing what type of contract the project manager plans to use on the project. The buyer points out that theperforming organization spent a lot of money hiring a design team to come up with the design. The project manager is concerned that the risk for the buyer be as small as possible. An advantage of a fixed price contract for the buyer is: | Cost risk is lower
# As part of the records management system, you are trying to make sure thatall records from the procurement are documented and indexed. Which of the following do you NOT have to worry about? | Negotiation process
# You are in the middle of a complex negotiation when the other party says, "We need to finish in one hour because I have to catch my plane:' That person is using which of the following negotiatian strategies? | Deadline
# Which of the following is an advantage of centralized contracting? | Increased expertise
# With which type of contract is the seller MOST concerned about project scope? | Fixed price
# Your company has an emergency and needs contracted work done as soon as possible. Under these circumstances, which of the following would be the MOST helpful to add to the contract? | Incentives
# During what part of the procurement process does procurement negotiation occur? | Conduct Procurements
# The project team is arguing about the prospective sellers who have submitted proposals. One team member argues for a certain seller while another team member wants the project awarded to a different seller. What part of the procurement process is the team in? | Conduct Procurements
# The project team seems to like to argue; they have argued about everything. Luckily the project manager has set in place a reward system and team-building sessions that will help and encourage the team to cooperate more. The Iatest thing they are arguing about is whether they should complete a work package themselves or outsource the work to someone else. What part of the procurement process must they be in? | Plan Procurements
# A project manager is in the middle of creating a request for proposal (RFP). What part of the procurement process is she in? | Plan Procurements
# Your program manager has come to you, the project manager, for help with a bid for her newest project. You want to protect your company from financial risk. You have limited scope definition. What is the BEST type of contract to choose? | Cost plus fixed fee (CPFF)
# Negotiations between two parties are becoming complex, so party A makes some notes that both parties sign. However, when the work is being done, party B claims that they are not required to provide an item they both agreed toduring negotiations, because it was not included in the subsequent contract. In this case, party B is: | Generally correct, because both parties are only required to perform what is in the contract
# Your project has just been fast tracked and you are looking to quickly bring in a subcontractor to complete networking. There is no time to issue a request for proposal (RFP), so you choose to use a company you have used many times before for software development. A PRIMARY concern in this situation is: | The subcontractor's qualifications
# The project manager and project sponsor are discussing the project costs and whether it is better to have their own company do part of the project or hire another company to do the work. If they asked for your opinion, you might say it would be better to do the work yourself if: | There is a lot of proprietary data
# After much excitement and hard work, the procurement statement of work for the project is completed. Even after gaining agreement that the procurement statement of work is complete, the project manager is still concerned whether it actually addresses all the buyer's needs. The project manager is about to attend the bidder conference. He asks you for advice on what to do during the session. Which of the following is the BEST advice you can give him? | Make sure you give all the sellers enough time to ask questions. They may not want to ask questions while their competitors are in the room
# A seller is awarded a contract to build a pipeline. The contract terms and conditions require that a work plan be issued for the buyer's approval prior to commencing work, but the seller fails to provide one. Which of the following is the BEST thing for the buyer's project manager to do? | Issue a default letter
# Close Procurements is different from Close Project or Phase in that Close Procurements: | Occurs before project closure
# You have just started administering a contract when management decides to terminate the contract. What should you do FIRST? | Go to the Close Procurements process
# The project team is arguing about the prospective sellers who have submitted proposals. One team member argues for a certain seller while another team member wants the project to be awarded to a different seller, The BEST thing the project manager should remind the team to focus on in order to make a selection is the: | Evaluation criteria
# The performing organization is trying to decide whether to split the contracts department and assign procurement responsibilities to departments directly responsible for the projects. A procurement professional might not want this split to occur because they would lose ____ in a decentralized contracting environment. | Access to others with similar expertise
# During project executing, your project team member delivers a project deliverable to the buyer. However, the buyer refuses the deliverable, stating that it does not meet the requirement on page 300 of the technical specifications. You review the document and find that you agree. What is the BEST thing to do? | Review the requirements and meet with the responsible team member to review the WBS dictionary
# What type of contract do you NOT want to use if you do not have enough labor to audit invoices? | Cost plus fixed fee (CPFF)
# A new project manager is about to begin creating the procurement statement of work. One stakeholder wants to add many items to the procurement statement of work. Another stakeholder only wants to describe the functional requirements. The project is important for the project manager's company, but a seller will do the work. How would you advise the project manager? | The procurement statement of work should be as detailed as necessary for the type of project
# When a product or service completely meets a customer's requirements: | Quality is achieved
# To what does the following sentence refer? "The point where the benefits or revenue to be received from improving quality equals the incremental cost to achieve that quality" | Marginal analysis
# A project has faced major difficulties in the quality of its deliverables. Management now states that quality is the most important project constraint. If another problem with quality were to occur, what would be the BEST thing for the project manager to do? | Allow cost to increase by fixing the root cause of the problem
# A manager notices that a project manager is holding a meeting with some of the team and some stakeholders to discuss the quality of the project. The project schedule has been compressed, and the CPI is 1.1. They have worked hard on the project, the team has been rewarded according to the reward system the project manager put in place, and there is a strong sense of team. The manager suggests that the project manager does not have enough time to hold meetings about quality when the schedule is so compressed. Which of the following BEST describes why the manager is wrong? | Improved quality leads to increased productivity, increased cost effectiveness, and decreased cost risk
# From the project perspective, quality attributes: | Are specific characteristics for which a product is designed and tested
# Quality is: | The degree to which the project meets requirements
# All the following are examples of Perform Quality Control EXCEPT: | Cost of quality
# Pareto charts help the project manager: | Focus on the most critical issues to improve quality
# A control chart helps the project manager: | Determine if a process is functioning within set limits
# Testing the entire population would: | Take too long
# All of the following are examples of the cost of nonconformance EXCEPT: | Quality training
# Standard deviation is a measure of how: | Far the measurement is from the mean
# What percentage of the total distribution is 3 sigma from the mean equal to? | 99.73%
# All of the following result from quality audits EXCEPT | Creation of quality metrics
# A control chart shows seven data points in a row on one side of the mean. What should be done? | Find an assignable cause
# You are managing a project in a just-in-time environment. This will require more attention, because the amount of inventory in such an environment is generally: | 0 percent
# In planning your project, which would generally have the highest priority: quality, cost, or schedule? | It should be decided for each project
# You are the program level manager with several project activities underway. In the executing process group, you begin to become concerned about the accuracy of progress reports from the projects. What would BEST support your opinion that there is a problem? | Quality audits
# A project manager and team from a firm that designs railroad equipment are tasked to design a machine to load stone onto railroad cars. The design allows for two percent spillage, amounting to over two tons of spilled rock per day. In which of the following does the project manager document quality control, quality assurance, and quality improvements for this project? | Quality management plan
# During a team meeting, the team adds a specific area of extra work to the project because they have determined it would benefit the customer. What is wrong in this situation? | The team is gold plating
# The project team has created a plan for how they will implement the quality policy. It addresses the organizational structure, responsibilities, procedures, and other information about plans for quality. If this changes during the project, WHICH of the following plans will also change? | Project management
# You are a project manager for a major information systems project. Someone from the quality department comes to see you about beginning a quality audit of your project. The team, already under pressure to complete the project as soon as possible, objects to the audit. You should explain to the team that the purpose of a quality audit is:| To identify inefficient and ineffective policies
# You are in the middle of a major new facility construction project. The structural steel is in place and the heating conduits are going into place, when a senior manager informs you that he is worried that the project will not meet the quality standards. What should you do in this situation? | Form a quality assurance team
# You are asked to select tools and techniques to implement a quality assurance program to supplement existing quality control activities. Which of the following would NOT be appropriate for this purpose? | Focus groups
# The new software installation project is in progress. The project manager is working with the quality assurance department to improve everyone's confidence that the project will satisfy the quality standards. Which of the following MUST they have before they start this process? | Quality control measurements
# The project you are working on has an increase in cost effectiveness, increased productivity, and increased morale. What might be the reason for these changes? | Increased quality
# A project manager has just taken over the project from another project manager during the execution of the project. The previous project manager created a project budget, determined communications requirements, and went on to complete work packages. What should the new project manager do NEXT? | Identify quality standards
# A project is facing a major change to its project deliverables. If the project manager is involved in determining which quality standards are relevant to the change, the project manager must be involved in: | Plan Quality
# At the end of a project, a project manager determines that the project has added four areas of functionality and three areas of performance. The customer has expressed satisfaction with the project. What does this mean in terms of success of the project? | The project was unsuccessful because it was gold plated
# During project executing, a project team member informs the project manager that a work package has not met the quality metric, and that she believes it is not possible to meet it. The project manager meets with all parties concerned to analyze the situation. Which part of the quality management process is the project manager involved in? | Perform Quality Control
# The project manager notices that project activities being completed by one department are all taking slightly longer than planned. To date, none of theactivities/work packages have been on the critical path, nor have they affected the critical chain planning that has occurred. The project manager is bothered by the problem, since four of the next five critical path activities are being completed by this department. After making three calls, the project manager is finally able to converse with the department manager to determine what is going on. The conversation is slow, because both speak different native languages and they are trying to converse in French, a shared language. | Work on increasing the effectiveness of the performing organization by recommending continuous improvement of the policy in question
# As the project manager, you are preparing your methods for quality management. You are looking for a method that can demonstrate the relationship between events and their resulting effects. You want to use a method to depict the events that cause a negative effect on quality. Which of the following is the BEST choice for accomplishing your objective? | Ishikawa diagram
# Which of the following explains why quality is planned in and not inspected in? | It improves quality and is less expensive
# Work on a project is ongoing when the project manager overhears two workers arguing over what a set of instructions mean. The project manager investigates and discovers that the instructions for the construction of the concrete footings currently being poured were poorly translated between the different languages in use on the project. Which of the following is the BEST thing for the project manager to do FIRST? | Look for quality impacts of the poor translation of the instructions for the footings
# All of the following are forms of power derived from the project manager's position EXCEPT: | Expert
# The highest point of Maslow's hierarchy of needs is called: | Esteem
# The halo effect refers to the tendency to: | Move people into project management because they are good in their technical fields.
# The sponsor's role on a project is BEST described as: | Helping to prevent unnecessary changes to project objectives
# Which of the following conflict resolution techniques will generate the MOST lasting solution? | Problem solving
# The MOST common causes of conflict on a project are schedules, project priorities, and: | Resources
# What conflict resolution technique is a project manager using when he says, "I cannot deal with this issue now!" | Withdrawal
# What does a resource histogram show that a responsibility assignment matrix does not? | Time
# You have just been assigned as project manager for a large telecommunications project. This one-year project is about halfway done. The project team consists of 5 sellers and 20 of your company's employees. You want to understand who is responsible for doing what on the project. Where would you find such information? | Responsibility assignment matrix
# During project planning in a matrix organization, the project manager determines that additional human resources are needed. From whom would he request these resources? | Functional manager
# A project manager must publish a project schedule. Activities, start/end times, and resources are identified. What should the project manager do NEXT? | Confirm the availability of the resources
# During every project team meeting, the project manager asks each team member to describe the work he or she is doing, and the project manager assigns new activities to team members. The length of these meetings has increased because there are many different activities to assign. This could be happening for all the following reasons EXCEPT: | Lack of resource leveling
# You are a project manager leading a cross-functional project team in a weak matrix environment. None of your project team members report to you functionally, and you do not have the ability to directly reward their performance. The project is difficult, involving tight date constraints and challenging quality standards. Which of the following types of project management power will likely be the MOST effective in this circumstance? | Expert
# A team member is not performing well on the project because she is inexperienced in system development work. There is no one else available who is better qualified to do the work. What is the BEST solution for the project manager? | Arrange for the team member to get training
# A project manager has just found out that a major subcontractor for her project is consistently late delivering work. The project team member responsible for this part of the project does not get along with the subcontractor. To resolve the problem, the project manager says, "You both will have to give up something to solve this problern," What conflict resolution method is she using? | Compromise
# A project has several teams. Team C has repeatedly missed deadlines in the past. This has caused team D to have to crash the critical path several times. As the team leader for team D, you should meet with the: | Project manager and the leader of team C
# The new project is exciting to both the project manager and the team. This is the project manager's first assignment as project manager. The team has the feeling that they will be able to complete work that has never been tried before. There are 29 people contributing to the product description, and the team consists of nine highly experienced experts in their field. Part of the way through planning, three highly technical team members are disagreeing about the scope of two of the deliverables. | He should listen to the differences of opinions, encourage logical discussions, and facilitate an agreement
# The project is just starting out and consists of people from 14 different departments. The project charter was signed by one person and contains over 30 major requirements that must be met on the project. The sponsor has informed the project manager that the SPI must be kept between 0.95 and 1.1. A few minutes of investigation resulted in the identification of 34 stakeholders, and the schedule objectives on the project are constrained. A project manager has just been hired. Which of the following types of project management power will BEST help the project manager gain the cooperation of others? | Formal
# A project manager is trying to settle a dispute between two team members. One says the systems should be integrated before testing, and the other maintains each system should be tested before integration. The project involves over 30 people, and 12 systems need to be integrated. The sponsor is demanding that integration happen on time. What is the BEST statement the project manager can make to resolve the conflict? | Let's do limited testing before integration and finish testing after integration
# A project is in the middle of execution when a stakeholder suggests a major new change. This change will cause the third major overhaul of the project. At the same time, the project manager discovers that a major work package was not completed because a team member's boss moved him to another project that had a higher priority. Which of the following is the BEST person for the project manger to address these issues with? | The sponsor
# What theory proposes that employees' efforts will lead to effective performance and the employees will be rewarded for accomplishments? | Expectancy
# Conflict resolution techniques that may be used on a project include confronting, smoothing, forcing, and: | Withdrawing
# The installation project has a CPI of 1.03 and an SPI of 1.0. There are 14 team members, and each team member had input into the final project management plan. The customer has accepted the three deliverables completed so far without complaint and the responsibility assignment matrix has not changed since the project began. The project is being completed in a matrix environment and there are no contracts needed for the project. Though the sponsor is happy with the status of the project, one of the team members is always complaining about how much time his project work is taking. Which of the following would be the BEST thing for the project manager to do? | Review the reward system for the project
# The project has been challenging to manage. Everyone has been on edge due to pressure to complete the project on time. Unfortunately, the tension has grown to the point where team meetings have become shouting matches and little work is accomplished during the meetings. One team member asks to be excused from future team meetings, as all the shouting upsets him. Meanwhile, the sponsor has asked to attend team meetings in order to better understand how the project is going and the issues involved in completing the project, and the customer has started discussions about adding scope to the project. In this situation, it would be BEST for the project manager to: | Create new ground rules for the meetings and introduce them to the team
# Project performance appraisals are different from team performance assessments in that project performance appraisals focus on: | How an individual team member is performing on the project
# A project manager had a complex problem to solve and made a decision about what needed to be done. A few months later, the problem resurfaced. What did the project manager MOST likely not do? | Confirm that the decision solved the problem
# The project CPI is 1.02, the benefit cost ratio is 1.7, and the latest round of performance reviews identified few needed adjustments. The project team was co-located into a new building when the project started. Everyone commented on how excited they were to have all new facilities. The sponsor is providing adequate support for the project, and few unidentified risks have occurred. In an attempt to improve performance, the project manager spends part of the project budget on new chairs for the team members and adds the term "senior" to each team member's job title. Which of the following is the MOST correct thing that can be said of this project or the project manager? | The project manager has misunderstood Herzberg's theory
# You just found out that a major subcontractor for your project consistently provides deliverables late. The subcontractor approaches you and asks you to continue accepting late deliverables in exchange for a decrease in project costs. This offer is an example of: | Compromise
# The management theory that states that all people can direct their own efforts is: | Theory Y
# Which of the following leadership traits is MOST important for a project manager? | Communication
# During the first half of the project, five team members left for other projects without being replaced, two team members went on vacation without informing you, and other team members expressed uncertainty about the work they were to complete. In this situation, it is BEST if you create a _____ for the second half of the project. | Staffing management plan
# The project manager is looking at the project's resource needs and lessons learned from past projects. This information causes the project manager to be concerned about the ability to acquire enough resources for the project in six months. Which of the following would be the LEAST effective preventive action? | Make sure functional managers have a copy of the resource histogram
# A large project is underway when one of the team members reviews the project status report. He sees that the project is currently running late. As he looks at the report further, he notices that the delay will cause one of his activities to be scheduled during a time he will be out of the country and cannot work on the activity. This is of great concern because he is very committed to the project being successful and he does not want to be the cause of the project being further delayed. What is the BEST THING for him to do? | Recommend preventive action
# There have been many work packages completed successfully on the project, and the sponsor has made some recommendations for improvements. The project is on schedule to meet an aggressive deadline when the successor activity to a critical path activity suffers a major setback. The activity has 14 days of float and is being completed by four people. There are two other team members with the skill set to assist the troubled activity, if needed. The project manager receives a call that three other team members are attempting to be removed from the project because they do not feel the project can be successful. When the project manager pursues this, she discovers that those team members have issues that have not been addressed. Which of the following is the BEST thing to do to improve the project? | Create an issue log
# To control the schedule, a project manager is reanalyzing the project to predict project duration. She does this by analyzing the sequence of activities with the least amount of scheduling flexibility. What technique is she using? | Critical path method
# A dependency requiring that design be completed before manufacturing can start is an example of a: | Mandatory dependency
# Which of the following are GENERALLY illustrated BETTER by bar charts than network diagrams? | Progress or status
# If the optimistic estimate for an activity is 12 days, and the pessimistic estimate is 18 days, what is the standard deviation of this activity? | 1
# A heuristic is BEST described as a: | Rule of thumb
# Lag means: | Waiting time
# Which of the following is the BEST project management tool to use to determine the longest time the project will take? | Network diagram
# Which of the following is CORRECT | The critical path helps prove how long the project will take
# What is the duration of a milestone? | There is no duration
# Which ofthe following BEST describes the relationship between standard deviation and risk? | Standard deviation tells you how unsure the estimate is
# The float of an activity is determined by | Determining the amount of time the activity can be delayed before it delays the critical path
# A project has three critical paths. Which of the following BEST describes how this affects the project? | It increases the project risk
# If project time and cost are not as important as the number of resources used each month, which of the following is the BEST thing to do? | Perform resource leveling
# When would a milestone chart be used instead of a bar chart? | Reporting to management
# Your project management plan results in a project schedule that is too long. If the project network diagram cannot change but you have extra personnel resources, what is the BEST thing to do? | Crash the project
# Which of the following is the BEST thing to do to try to complete a project two days earlier? | Meet with the team and look for options for crashing or fast tracking the critical path
# In attempting to complete the project faster, the project manager looks at the cost associated with crashing each activity. The BEST approach to crashing would also indude looking at the: | Risk impact of crashing each activity
# Which of the following processes incudes asking team members about the time estimates for their activities and reaching agreement on the calendar date for each activity? | Develop Schedule
# A project manager is in the middle of the executing process of a very large construction project when he discovers that the time needed to complete the project is longer than the time available. What is the BEST thing to do? | Determine options for schedule compression and present management with his recommended option
# During project planning, you estimate the time needed for each activity and then add the estimates to create the project estimate. You commit to completing the project by this date. What is wrong with this scenario? | The team did not create the estimate, and a network diagram was not used
# You are a project manager on a $5,000,000 software development project. While working with your project team to develop a network diagram, you notice a series of activities that can be worked in parallel but must finish in a specific sequence. What type of activity sequencing method is required for these activities? | Precedence diagramming method
# You are a project manager on a $5,000,000 software development project. While working with your project team to develop a network diagram, your data architects suggest that quality could be improved if the data model is approved by senior management before moving on to other design elements. They support this suggestion with an article from a leading software development journal. Which of the following BEST describes what this type of input is called? | Discretionary dependency
# Based on the following, if you needed to shorten the duration of the project, what activity would you try to shorten? | Activity C
# You have a project with the following activities: Activity A takes 40 hours and can start after the project starts. Activity B takes 25 hours and should happen after the project starts. Activity C must happen after activity A and takes 35 hours. Activity D must happen after activities Band C and takes 30 hours. Activity E must take place after activity C and takes 10 hours. Activity F takes place after Activity E and takes 22 hours. Activities F and D are the last activities of the project. Which of the following is TRUE if activity B actually takes 37 hours? | The critical path is Start, A, C, E, F, End
# A project manager has received activity duration estimates from his team. Which of the following does he need in order to complete the Develop Schedule process? | Reserves
# A project manager is taking over a project from another project manager during the planning process group. If the new project manager wants to see what the previous project manager planned for managing changes to the schedule, it would be BEST to look at the: | Schedule management plan
# A project manager is using weighted average duration estimates to perform schedule network analysis. Which type of mathematical analysis is being used? | PERT
# The WBS, estimates for each work package, and the network diagram are completed. Which of the following would be the NEXT thing for the project manager to do? | Create a preliminary schedule and get the teams approval
# A new product development project has four levels in the work breakdown structure and has been sequenced using the precedence diagramming method. The activity duration estimates have been received. What should be done NEXT? | Compress the schedule
# You are a project manager for a new product development project that has four levels in the work breakdown structure. A network diagram has been created, the duration estimates have been compressed, and a schedule has been developed. What time management activity should you do NEXT? | Gain approval
# A team member from research and development tells you that her work is too creative to provide you with a fixed single estimate for the activity. You both decide to use the labor hours per installation from past projects to predict the future. This is an example of which of the following? | Parametric estimating
# An activity has an early start (ES) of day 3, a late start (LS) of day 13, an early finish (EF) of day 9, and a late finish (LF) of day 19. The activity: | Is not on the critical path
# The project is calculated to be completed four days after the desired completion date. You do not have access to additional resources. The project is low risk, the benefit cost ratio (BCR) is expected to be 1.6, and the dependencies are preferential. Under these circumstances, what would be the BEST thing to do? | Make more activities concurrent
# A project manager for a small construction company has a project that was budgeted for $130,000 over a six-week period. According to her schedule, the project should have cost $60,000 to date. However, it has cost US $90,000 to date. The project is also behind schedule, because the original estimates were not accurate. Who has the PRIMARY responsibility to solve this problem? | Project manager
# Senior management is complaining that they are not able to easily determine the status of ongoing projects in the organization. Which of the following types of reports would help provide summary information to senior management? | Milestone reports
# Rearranging resources so that a constant number of resources is used each month is called: | Leveling
# Which of the following is a benefit of an analogous project estimate? | It gives the project team an understanding of management's expectations
# During project executing, a large number of changes are made to the project. The project manager should: | Make approved changes as needed, but retain the schedule baseline
# Extensive use of ___ communication is most likely to aid in solving complex problems. | Written
# The work breakdown structure can be an effective aid for communication in which situation(s) | Internal and external to the project
# The MOST likely result of communication blockers is that: | Conflict occurs
# Communications are often enhanced when the sender ___ the receiver. | Shows concern for the perspective of
# Formal written correspondence with the customer is required when: | The customer requests additional work not covered under contract
# A project manager has a problem with a team member's performance. What is the BEST form of communication for addressing this problem? | Informal verbal communication
# Communications under a contract should tend toward: | Formal written communication
# The project status report is an example of which type of communication? | Formal written communication
# When a project manager is engaged in negotiations, nonverbal communication skills are of: | Major importance
# A large, one-year telecommunications project is about halfway done when you take the place of the previous project manager. The project involves three different sellers and a project team of 30 people. You would like to see the project's communications requirements and what technology is being used to aid in project communications. Where will you find this information? | The communications management plan
# Project information has been distributed according to the communications management plan. Some project deliverables have been changed in accordance with the project management plan. One stakeholder expressed surprise to the project manager upon hearing of a previously published change to a project deliverable. All stakeholders received the communication containing notification of the change. What should the project manager do? | Review the communications management plan and make revisions if necessary
# Communication is the key to the success of a project. As the project manager, you have three stakeholders with whom you need to communicate. As such, you have six channels of communication. A new stakeholder has been added that you also need to communicate with. How many communications channels do you have now? | 10
# Two people are arguing about what needs to be done to complete a work package. If the project manager wants to know what is going on, she should pay MOST attention to: | The pitch and tone of the voices, and physical mannerisms
# A project manager has a project team consisting of people in four countries. The project is very important to the company, and the project manager is concerned about its success. The length of the project schedule is acceptable. What type of communication should he use? | Formal written communication
# The project status meeting is not going weIl. Everyone is talking at the same time, there are people who are not participating, and many topics are being discussed at random. Which of the following rules for effective meetings is NOT being adhered to? | Create and publish an agenda and a set of rules for controlling the meeting
# You have just been assigned as project manager for a large manufacturing project. This one-year project is about halfway done. It involves five different sellers and 20 members of your company on the project team. You want to quickly review where the project now stands. Which of the following reports would be the MOST helpful in finding such information? | Progress
# A team member is visiting the manufacturing plant of one of the suppliers. Which of the following is the MOST important thing to be done in any telephone calls the project manager might make to the team member? | Ask the team member to repeat back what the project manager says
# A project manager overhears a conversation between two stakeholders who are talking about how unhappy they are with the impacts of the project on their own departments. Stakeholder A asks if the project is on time, and stakeholder B replies that the SPI is 1.05. Stakeholder A asks if the project manager for the project knows of stake holder B's concern. Stakeholder B responds that he is not sure. What is the BEST thing for the project manager to do? | Arrange a meeting with both stakeholders to allow them to voice any concerns they may have
# A project manager wants to more extensively involve the stakeholders on the project. Which of the following would be the BEST way to accomplish this? | Have the stakeholders periodically review the list of project requirements
# During the middle of the project, things have been going well. The work authorization system has allowed people to know when to start work, and the issue log has helped keep track of stakeholders' needs. The benefit cost ratio has been improving, and the sponsor has expressed his appreciation for the team members' efforts by hosting a milestone party for the team. The project manager gets a call from a team member saying that the results from the completion of their activity's predecessor is two days late. Which of the following reasons would BEST describe why this occurred? | Functional management was not included in the communications management plan
# A project manager has just been assigned a team that comes from many countries, including Brazil, Japan, the US, and Britain. What is her BEST tool for success? | Communication and well-developed people skills
# The project has 13 team members and affects over 15 departments in the organization. Because the project is 20 percent complete to date and the team has had successful performance reports from five of the affected departmnents, the project manager holds a party to celebrate. The project manager invites key stakeholders from all of the departments to the party, in order to give those providing good reviews an informal opportunity to communicate good things to those departments that have not yet been affected by the project. At the party, the project manager walks around to try to discover any relevant information that would help the project be more successful. He happens to hear a manager of one of the departments talking about setting up more regular meetings on the project. The BEST thing for the project manager to do would be to FIRST: | Review the information distribution methods on the project
# The purpose of status meetings is to: | Exchange information about the project
# The requirements of many stakeholders were not approved for inclusion in your project. Therefore, you had a difficult time receiving formal approval of the project management plan for this project. The stakeholders argued and held up the project while they held meeting after meeting about their requirements. The project was finally approved and work began six months ago. All of the following would be good preventive actions to implement EXCEPT: | Hold meetings with the stakeholders to go over the work that will not be added to the project
# The project manager is expecting a deliverable to be submitted by e-mail from a team member today. At the end of the day, the project manager contacts the team member to notify him that it has not been received. The team member apologizes and says that he was not able to e- mail the deliverable, and it was sent through themail instead. The team member goes on to explain that he notified the project manager that this would occur during a phone conversation they had while the project manager was traveling. "Wasn't that the conversation we had when I told you I could not hear you well due to poor cell phone coverage?" asks the project manager. "Yes," replies the team member. What could have avoided this problem? | Feedback during the communication
# When do stakeholders have the MOST influence on a project? | At the beginning of the project
# The project has been going well, except for the number of changes being made. The project is being installed into seven different departments within the company and will greatly improve departmental performance when operational. There are 14 project management processes selected for use on this project. The project manager is a technical expert as well as having been trained in communications and managing people. Which of the following is the MOST likely cause of the project problems? | Some stakeholders were not identified
# Stakeholders can be identified in which project management process groups? | Initiating, planning, executing, monitoring and controlling, and closing
# If a project manager wants to report on the actual project results vs. planned results, she should use a: | Variance report
# A particular stakeholder has a reputation for making many changes on projects. What is the BEST approach a project manager can take at the beginning of the project to manage this situation? | Get the stakeholder involved in the project as early as possible
# A work breakdown structure numbering system allows project staff to: | identify the level at which individual elements are found
# The work breakdown structure can BEST be thought of as an effective aid for_______ communications. | stakeholder
# Which of the following is a KEY attribute of scope verification? | Customer acceptance of project deliverables
# During project executing, a team member comes to the project manager because he is not sure of what work he needs to accomplish on the project. Which of the following documents contain detailed descriptions of work-packages? | WBS dictionary
# During what part of the project management process group is the project scope statement created? | Planning
# A project management plan should be realistic in order to be used to manage the project. Which of the following is the BEST method to achieve a realistic project management plan | Project manager creates the project management plan based on input from the team
# What approach to developing a WBS involves writing down or drawing ideas in a nonlinear format? | mind mapping
# Which tool or technique for collecting requirements is often the most expensive and time consuming? | Interview
# To control the schedule, a project manager is analyzing the project to predict project duration. She does this by analyzing the sequence of activities with the least amount of scheduling flexibility. What technique is she using? | Critical path method
# A dependency requiring that design be completed before manufacturing can start is an example of a: | mandatory dependency
# Which of the following are GENERALLY illustrated BETTER by bar charts than network diagrams? | Progress or status
# If the optimistic estimate for an activity is 14 days, the most likely estimate is 15 days, and the pessimistic estimate is 19 days, what should the duration of this activity? | 15.5 days
# Which of the following is the BEST project management tool to use to determine the longest time the project will take? | Network diagram
# Which of the following is CORRECT? | A critical path can run over a dummy
# Which of the following processes includes asking team members about the time estimates for their activities and reaching the agreement on the calendar date for each activity? | Develop Schedule
# One common way to compute estimate at completion (EAC) is to take the budget at completion (BAC) and: | divide by CPI
# Estimate at completion (EAC) is periodic evaluation of: | anticipated total cost at project completion.
# If earned value (EV) = 450, actual cost (AC) = 400, planned value (PV)=425, what is cost variance (CV)? | 50
# Analogous estimating: | uses actual detailed historical costs
# The cost of choosing one project and giving up another is called: | opportunity cost.
# Cost performance measurement is BEST done through which of the following? | Calculating earned value and using the indexes and other calculations to report pas performance and forecast future performance.
# A cost performance index (CPI) of 0.89 means: | The project is only getting 89 percent out of every dollar invested.
# When a product or service completely meets a customer's requirements: | quality is achieved.
# Who is ultimately responsible for quality management on the project? | Project manager
# A team is using a fishbone diagram to help determine what quality standards will be used on the project. What part of the quality management process are they in? | Quality planning
# All of the following are tools/ techniques of Perform Quality Assurance, EXCEPT? | Reserve analysis
# From the project perspective, quality attributes: | are specific characteristics for which a product is designed and tested.
# Quality is: | the degree to which the project meets requirements.
# Pareto charts helps the project manager: | focus on the most critical issues to improve quality.
# Which of the following is not part of project human resource management? | Resource estimating
# ___________causes people to participate in an activity for their own enjoyment. | Intrinsic motivation
# At the bottom of Maslow's pyramid or hierarchy of needs are _____ needs | Physiological
# According to McClelland's acquired needs theory, people who desire harmonious relation with other people and need to feel accepted have a high_______ need. | Affiliation
# ________ power is based on a person's individual charisma. | Referent
# A________ maps the work of a project as described in the WBS to the people responsible for performing the work. | responsibility assignment matrix
# A staffing management plan often includes a resource ___________, which is a column chart that shows the number of resources assigned to the project overtime. | Histogram
# What technique can you use to resolve resource conflicts by delaying tasks? | resource leveling
# What do many experts agree is the greatest threat to the success of any project? | a failure to communicate
# Which communication skill is most important for information technology professionals for career advancement? | speaking
# Which of the following is NOT a process of communication management? | Acquiring project team
# A_______ is an approach to help increase the support of stakeholders throughout the project | stakeholder management strategy
# Which of the following is not a preferred section in communication plan? | Training activities
# A_____ report describes where the project stands at a specific point time. | status
# When using the ________, project managers directly face a conflict using a problem-solving approach that allows affected parties to work through their disagreements. | confrontation mode
# Which is not a process in the Risk Management knowledge area? | Risk Design
# Contingency reserves are used to handle which type of risk? | Known unknowns
# Which of the following statements is false? | Uncertainty and risk are lowest at the start of the project and greatest at the end.
# A risk response which involves reducing the impact of a risk event by reducing the probability of its occurrence is called: | Mitigation
# When should a risk be avoided? | When the risk event is unacceptable -- generally one with a very high probability of occurrence and high impact.
# An example of risk mitigation is: | Using proven technology in the development of a product to lessen the probability that the product will not work
# A risk ________ is a document that contains results of various risk management processes, often displayed in a table or spreadsheet format. | register
# Suppose there is a 20 percent chance that you will earn $10,000 and a 80 percent chance that you will lose $100,000 on a particular protect. What is the projects estimated monetary value? | -$78.000
# Which type of contract has the least amount of risk for buyer | fixed-price
# Which type of contract has the least amount of risk for seller | cost plus percentage of costs
# An item you need for a project has a daily lease cost of $200. To purchase the item, there is an investment cost of $6000 and a daily cost of $50. Calculate the number of days when the lease cost would be the same as the purchase cost. | 40
# A proposal evaluation sheet is an example of a(n) ________________ | weighted scoring model
# Your organization hired a specialist in a certain field to provide training for a short period of time. Which reason for outsourcing would this fall under? | accessing skills and technologies
# Buyers often prepare a _____________ list when selecting a seller to make this process more manageable. | short
# A unilateral contract under which the seller is paid a preset amount per unit of service is called: | A unit price contract
# If your college or university wanted to get information from potential sellers for providing a new sports stadium, what type of document would they require of the potential sellers? | Proposal
# Which of the followings is NOT an advantage of using formal project managements? | Reduce the number of reisk of the project
# At the planning stage of the project, the project manager defined that the cost and quality goals are the most important, but the project met quality goals and made customer happy when it has completed. This project is ___ | success
# In which of the following phases, do we have to develop a Work Breakdown Structure at level +3 at least? | development
# Which of the following characteristics shows the degree to which work activities are organized around groups or team, rather than individuals? | group emphasis
# Which of the following knowledge areas leads to specific project objectives? | Scope management
# ___ processes include coordinating people and other resources to carry out the project plans and produc the products, services, or results of the project or phase | excuting
# Project manager's authority in the project organization structure is ___ | moderate to high
# the project management must answer the following questions, except | are we working on the right project?
# project environment is unique so project requires a unique approach in project management | false (true_la dung_manhnl)
# direct and manage project executing belongs to the ___ PM Process Group | executing
# In which of the following, project managers' risk management skills are more important? | high uncertainty project
# Which of the following IT project portfolio categories will an organization have the highest risk when implementing? | transform the business projects
# In which of the following phases, can we develop a definitive cost estimate? | implementation
# competition for scarre resources make conflict a central issue in organizations, and power improves the ability to botain scarre rescources. which of the following should project managers use to understand the organization in order to be more effective in that issue? | political frame
# All of the following aspects are very important for project managers to be competitive, except | project managers should have high technical skills
# all of the following are basic IT project portfolio categories, except? | transform: project in this category can be done to poen new business domain
# which of the following is NOT a project | a technician updates incorrect data weekly
# all of the following shows the organizational commitment to information technology, except | assigning enough IT rescources to IT projects
# the companies that excel in project delivery capability do all of the following practices in project management, except | spend enough money for the project
# All of the following skills are very important for project managers, except | development
# In the ___, leadership, people skills, having vision and goals, self confidence, expectations management, and listening skills were most important | very novel projects
# a program is which one of the following | a collection of projects with a common objective
# develop project charter work belongs to the __ PM process group | initiating
# which of the following will help an organization make sure that the projects contribute to the entire enterprise's success | project management
# __ addresses the authority and control for key IT activities in organizations, including IT infrastructure, IT use, and project management | IT govemance
# ___ is a framework for describing the phases involved in developing and maintaining information systems | the systems development life cycle
# which of the following knowledge areas is a facilitating knowledge area tha means througn which the project objectives are achieved | human resources management
# a ___ is a document that formally recognizes the existence of a project and provides direction on the project's objectives and management | project chapter (sai:management plan)
# All of the following are phases of the traditional project lifecycle, except? | coding
# __ ensures that the descriptions of the project's products are correct and complete | configuration management
# a new government law requires an organization to report data in a new way. Under which category would a new information system project to provide this data fall | directive
# Which of the following is not one project attribute? | Has one or more purposes
# An example of a project is: | Constructing a building or facility
# ______help their organizations make wise investment decisions by helping to select and analyze projects from a strategic perspective | Portfolio managers
# Which of the following concerns on tactical goals? | Project management
# In many organizations, project managers also support an emerging business strategy of project portfolio management. Portfolio management addresses question like_____. | Are we working on the right projects?
# Quadruple Constraints of Project Management means ____constraints | Cost, time, quality, and scope
# A program is which one of the following? | A collection of projects with a common objective
# In early phases of a traditional project life cycle, resource needs are usually ____ and the level of uncertainty is ____. | lowest, highest
# In which of the following phases, can we develop a definitive cost estimate? | Implementation
# All of the following are phases of the traditional project lifecycle, Except? | Coding
# Who control the project budget in balance matrix organization structure? | Both project manager and functional manager
# Project manager's authority in the project organization structure is | High to almost total
# _____ focuses on producing harmony between the needs of the organization and the needs of the people | The human resources frame
# Which is not a process group in project management (as mentioned in the PMBOK)? | Feedback
# During project plan execution: | The project manager uses corrective action to bring future performance in line with the project plan.
# In which process group do we identify human and non-human resources required for a project? | Initiating
# _______processes include coordinating people and other resources to carry out the project plans and produce the products, services, or results of the project or phase | Executing
# Which of the following outputs is often completed before initiating a project? | Business case
# Which is NOT a task that is taken in pre-initiation phase? | Develop project charter
# Which of the following processes is NOT a part of project integration management | develop the project business case
# What is the last step in four-stage planning processes for selecting information technology project? | Resource allocation
# Which of the following is NOT a best practice for new product development projects? | select projects that will take less than two years to provide payback
# If estimates for total discounted benefits for a project are $320,000 and total discounted costs are $200,000, what is the estimated return on investment (ROI)? | 60 percent
# _________ ensures that the descriptions of the project's products are correct and complete. | Configuration management
# Which of the following items is not an objective of integrated change control? | Make sure that project get more money from customer
# Project Stakeholder are: | Anybody who is actively working on the project
# An example of a project is: | Constructing a building or facility
# Company procedures require the creation of a lessons learned document. Which of the following is the BEST use of lessons learned? | Historical records for future projects
# Consideration of ongoing operations and maintenance is crucially important to products of projects. Ongoing operations and maintenance should: | Not be viewed as part of a project. A project is temporary with a definite beginning and end.
# One of your team members informs you that he does not know which of the many projects he is working on is the most important. Who should determine the priorities among projects in a company? | The project management office
# All of the following are part of the team's stakeholder management effort EXCEPT | Giving stakeholders extras.
# Direct and manage project executing belongs to the ...... PM Process Group. | Executing
# Scope definition is important to the success of the project EXCEPT: | It serves as the basis for future project decisions.
# Which of the following can be used to determine what work is included in each work package for each of your team members? | Work Breakdown Structure Dictionary
# All of the following occur during the planning process group EXCEPT: | Develop project Charter.
# All of the following are outputs of the close project process EXCEPT: | Deliverables
# A detailed project schedule can be created only after creating the ___ | Work breakdown structure.
# Control project schedule belongs to the ________ PM Process Group | Monitoring and Controlling
# Which of the following is not a best practice for new product development projects? | select projects that will take less than two years to provide payback
# A new government law requires an organization to report data in a new way. Under which category would a new information system project to provide this data fall? | Directive
# Which of the following describe the BEST use of historical records from previous projects? | Estimating, risk management, and project planning
# Which of the following is not a suggestion for performing integrated change control? | minimize change
# What approach to developing a WBS involves writing down or drawing ideas in a nonlinear format | mind mapping
# All of the following are outputs of the scope definition process EXCEPT: | Preliminary project scope statement
# The construction phase of a new software product is near completion. The next phases are testing and implementation. The project is two weeks ahead of schedule. What should project manager be MOST concerned with before moving on to the final phase? | Verify scope
# During a project team meeting, a team member suggests an enhancement to the scope that is beyond the scope of project charter. The project manager points out the team needs to concentrate on completing all the work and only the work required. This is an example of ____ | Scope management.
# Senior management is complaining that they are not able to easily determine the status of ongoing projects in the organization. Which of the following type of reports that would help provided summary information to senior management? | Milestone reports
# You are the project manager for the LLL Project. Steven, a project team member, is confused about network diagrams. Specifically, he wants to know what the critical path is in a network diagram. Your answer is which one of the following? | The critical path is the path with the longest duration.
# If the optimistic time estimate for an activity is 8 days, most likely time is 10 days, and pessimistic time is 24 days. What is PERT (Program Evaluation and Review Technique) weighted average of this activity? | 12
# You are the project manager for the MNB Project. You and your project team are about to enter into the activity duration estimating process. Which of the following will not be helpful in your meeting? | The project contract
# Which of the following represent the portion of the approved total cost estimate planned to be spent on an activity during a given period? | Planned value (PV)
# The main focus of life cycle costing is to ___ | Consider operations and maintenance costs in making project decisions.
# The project manager is allocating overall cost estimate to individual activities to establish a baseline for measuring project performance. What process is this? | Determine Budget
# What percentage of the total distribution is 1 sigma from the mean equal to? | 68.29%
# Which of the following methods is used to provide a standard to measure performance? | Benchmarking
# Which of the following statements are FALSE regarding quality audits? | Quality audits are generally performed after scope verification, but can also be performed in parallel with scope verification
# Pareto charts help project manager _____ | Focus on most critical issues to improve quality.
# Quality is ___ | The degree to which the project meets requirements
# As the project manager, you are preparing your methods for quality management. You are looking for a method that can demonstrate the relationship between events and their resulting effects. You want to use a method to depict the events that cause a negative effect on quality. Which of the following is the BEST choice for accomplishing your objectives? | Ishikawa diagram
# During the first half of the project, five team member left for other projects without being replaced, two team members went on vacation without informing you, and other team members expressed uncertainty about the work they were complete. In this situation, it is the BEST if you create a _______ for the second half of the project? | Staffing management plan.
# According to Maslow's hierarchy of needs in which does the need for acceptance occurs? | Social needs
# Which of the following describes the theory Z style of management | Theory Z is based on the Japanese approach to motivating workers, emphasizing trust, quality, collective decision making, and cultural values
# _____ is getting people to do things based on a position of authority. | Legitimate power
# Who of the following are ALWAYS stakeholders? | An assembly line worker that will use the product of the project.
# A particular stakeholder has a reputation for making changes on projects. What is the BEST approach a project manager can take at the beginning of the project to manage this situation? | Get the stakeholder involved in the project as early as possible.
# Which of the following are NOT the direct results of managing the project team | Negotiating staff assignments
# Which of the following best describes a directly face a conflict using a problem-solving conflict resolution technique | Confrontation
# Formal written correspondence with the customer is required when ___ | The customer requests additional work not covered under contract
# Which is the one not included in the features of a project? | Fixed operation
# Which is the correct explanation of Scope? | The sum of the products and services created as a project
# Which is not an advantage of project management? | Improve developer's skill
# Which strategic technology considers in efficient using of computer resources, social responsibility, and environmental impact? | Green IT
# Which is not a project attribute? | A project should have only one project manager and one technical leader
# What is the process of gradual, step-wise reduction to details of the project products and the characteristics of new services called? | Progressive elaboration
The project scope management plan is an output of which of the following process | Scope planning
# According to textbook, every project is constrained in different ways by its scope,...., and cost goals | Time
# Which is the most appropriate description that explains a project team member? | The group that carries out the work of the project.
# In which organization are the project manager's independence and authority weakest? | Functional organization
# The __________ deal with how the organization is structured and focuses on different groups' roles and responsibilities in order to meet the goals and policies set by top management | Structural frame
# In...
. Organization structure type, project manager has "Moderate to high" authority | Projectized
# In Balanced Matrix Organization Structure type, .... will control the project budget. | Mixed (Functional manager and PM)
# Which of the following statements best describes the relationship between project lifecycle phases and project management processes? | Project management processes can repeat within a project lifecycle.
# What is core of the advantages of a functional organization? | All employees report to one manager and have a clear chain of command
# Which is not a disadvantage of virtual teams? | Increasing costs because it requires office space or requires more support
# Which is the most appropriate description of the stakeholder's influence on the project life cycle? | Maximum at the start and then gradually weakens towards the end of the project.
# During project plan execution: | The project manager uses corrective action to bring future performance in line with the project plan.
# What is the last step in the four-stage planning process for selecting information technology projects? | resource allocation
# Which of the following outputs is often completed before initiating a project? | Business case
# Which is not a task that is taken in pre-initiation phase? | Develop project charter
# Which of the following processes is not part of project integration management? | develop the project business case
# What is the last step in four-stage planning processes for selecting information technology project? | resource allocation
# Which of the following items is not a step in four-stage planning processes for selecting IT project? | mind mapping
# Which of the following is not a best practice for new product development projects? | select projects that will take less than two years to provide payback
# If estimates for total discounted benefits for a project are $130,000 and total discounted costs are $100,000, what is the estimated return on investment (ROI)? | 30 percent
# A____________ is a document that formally recognizes the existence of a project and provides direction on the project's objectives and management. | project chapter (sai:management plan)
# Which of the following items is not normally included in a project charter? | a Gant chart
# _________ ensures that the descriptions of the project's products are correct and complete. | Configuration management
# Which of the following is not a suggestion for performing integrated change control? | minimize change
# Which tool or technique for collecting requirements is often the most expensive and time consuming? | interview
# A__________________ is a deliverable-oriented grouping of the work involved in a project that defined the total scope of the project | WBS
# What approach to developing a WBS involves writing down or drawing ideas in a nonlinear format? | mind mapping
# Assume you have a project with major categories called planning, analysis, design, and testing. What level of the WBS would these items fall under? | 2
# Which of the following is not a best practice that can help in avoiding scope problems on information technology project? | Don't involve too many users in scope management
# Scope________ is often achieved by a customer inspection and then sign-off on key deliverables. | verification
# Which of the following is not a suggestion for improving user input? | Only have meetings as needed, not on a regular basis
# Project management software helps you develop a __________, which serves as basis for creating Gantt charts, assigning resources, and allocating costs. | WBS
# The project scope statement, __________, and organizational process assets are primary inputs for creating a WBS. | Requirements documents
# Michael is the project manager of the 98GH Project. This project requires several members of the project team to complete a certification class for another project the week of November 2. This class causes some of the project activities on Michael's activities to be delayed from his target schedule. This is an example of which of the following? | External dependencies
# What is the difference between PDM and ADM? | ADM places activities on arrows; PDM places activities on nodes.
# You are the project manager for the POL Project. This project will use PERT to calculate the estimates for activity duration. For activity D, you have the following information: P=10 days, O=6 days, M=5 days. What is the result of PERT? | 6 days
# You are the project manager for the MNB Project. You and your project team are about to enter into the activity duration estimating process. Which of the following will not be helpful in your meeting? | The project contract
# Which of the following is not an output from the activity duration estimating process? | WBS
# Which of the following is not an output of activity resource estimation process? | WBS Dictionary
# Which of the following is not a primary input of activity duration estimation process? | WBS Dictionary
# You are the project manager for the 987 Project. Should this project run over schedule, it will cost your organization $35,000 per day in lost sales. With four months to completion, you realize the project is running late. You decide, with management's approval, to add more project team members to the project plan to complete the work on time. This is an example of which of the following? | Crashing
# You are the project manager for the 987 Project. Should this project run over schedule, it will cost your organization $35,000 per day in lost sales. With four months to completion, you realize the project is running late. You decide, with management's approval, to change the relationship between several of the work packages so they begin in tandem rather than sequentially. This is an example of which one of the following? | Fast tracking
# Which of the following choices indicates that a project has a burn rate of 1.5? (Hint: Burn rate is the same as the Cost Performance Index) | The AC is 100 and the EV is 150.
# Schedule variance can be determined by: | EV PV
# Project Cost Management includes all of the following except: | Resource leveling
# Earned value is all of the following except: | Actual cost of work performed.
# During the six month update on a 1 year, $50,000 project, the analysis shows that the PV is $25,000; the EV is $20,000 and the AC is $15,000. What can be determined from these figures? | The project is behind schedule and under cost.
# The inputs to Cost Budgeting includes all of the following except: | Cost baseline
# Parametric cost estimating involves: | Using rates and factors based on historical experience to estimate costs.
# How close to actual costs should a definitive budget estimate be? | -5 percent to +10 percent
# Which type of cost is team training? | Direct
# During the completion of the project, a project manager wants to ensure that the quality of the end product is acceptable. The BEST way to do this is by: | checking quality levels against the standards set in the quality plan.
# The line in the middle of a control chart is called the: | mean
# Quality is | conforming to requirements, specifications, and fitness of use
# A project team has invited many of the project stakeholders to help them inspect quality on the project. Which of the following would NOT be an output of this activity? | Quality management plan
# All of the following are outputs of quality planning EXCEPT? | Acceptance decisions
# Who is ultimately responsible for quality management in the project? | Project manager
# A project team member comes to the project manager during project execution to tell him that they feel the project cannot meet its quality standards. The project manager calls a meeting of the affected stakeholders to work through the problem. Which step of the quality management process is the project manager in? | Quality assurance
# _________ is the degree to which a set of inherent characteristics fulfils requirements, | Quality
# Which of the following methods is used to provide a standard to measure performance? | Benchmarking
# Which of the following is not part of project human resource management? | Resource estimating
# ___________causes people to participate in an activity for their own enjoyment. | Intrinsic motivation
# According to McClelland's acquired needs theory, people who desire harmonious relation with other people and need to feel accepted have a high_______ need. | Affiliation
# ________ power is based on a person's individual charisma. | Referent
# A________ maps the work of a project as described in the WBS to the people responsible for performing the work. | responsibility assignment matrix
# A staffing management plan often includes a resource ___________, which is a column chart that shows the number of resources assigned to the project overtime. | Histogram
# What technique can you use to resolve resource conflicts by delaying tasks? | resource leveling
# What are five stages in Tuckman's model of team development, in chronological order? | forming, storming, norming, performing, and adjourning
# What do many experts agree is the greatest threat to the success of any project? | a failure to communicate
# Which communication skill is most important for information technology professionals for career advancement? | speaking
# Which of the following is not a process of communication management? | Acquiring project team
# A_______ is an approach to help increase the support of stakeholders throughout the project | stakeholder management strategy
# Which of the following is not a preferred section in communication plan? | Training activities
# A_____ report describes where the project stands at a specific point time. | status
# When using the ________, project managers directly face a conflict using a problem-solving approach that allows affected parties to work through their disagreements. | confrontation mode
# When using the ________, the project manager deemphasizes or avoids areas of differences and emphasizes areas of agreement. | smoothing mode
# You have two project stakeholders who do not get along at all. You know they both enjoy travelling, so you discuss great travel destinations when they are both in the room together to distract them from arguing with each other. What conflict-handling mode are you using? | smoothing mode
# Which is not a process in the Risk Management knowledge area? | Risk Design
# Which of the following statements is false? | Uncertainty and risk are lowest at the start of the project and greatest at the end.
# A risk response which involves reducing the impact of a risk event by reducing the probability of its occurrence is called: | Mitigation
# When should a risk be avoided? | When the risk event is unacceptable -- generally one with a very high probability of occurrence and high impact.
# An example of risk mitigation is: | Using proven technology in the development of a product to lessen the probability that the product will not work
# A risk ________ is a document that contains results of various risk management processes, often displayed in a table or spreadsheet format. | Register
# In general, for which phase is risk and uncertainty minimum? | Final phase
# Which type of contract has the least amount of risk for buyer | fixed-price
# Which type of contract has the least amount of risk for seller | cost plus percentage of costs
# A proposal evaluation sheet is an example of a(n) ________________ | weighted scoring model
# Your organization hired a specialist in a certain field to provide training for a short period of time. Which reason for outsourcing would this fall under? | accessing skills and technologies
# Buyers often prepare a _____________ list when selecting a seller to make this process more manageable. | short
# A unilateral contract under which the seller is paid a preset amount per unit of service is called: | A unit price contract
# If your college or university wanted to get information from potential sellers for providing a new sports stadium, what type of document would they require of the potential sellers? | Proposal
# In which project procurement management process is an RFQ often written? | planning procurements
# In a project that has never been done before, the PM must select one or more methods of estimating task duration. What is the most reliable method under this described situation? | B. Expert judgement
# All organizations should be supportive of the performing organization's long term goals. These type of goals are best described as | C. Strategic
# Which of the following processes is not part of project integration management? | A. develop the project business case
# The seven primary characteristics that are common to all projects are: | C. Objectives, schedule, complexity, size and nature of task, resources, and integrated information and control system.
# In which process group do we examine the alternative ways of accomplishing project objectives? | A. Initiating
# Each project phase is marked by completion of one or more: | C. deliverables
# Operations and Maintenance efforts should: | B. Be treated as part of the project's life cycle
# Which is the most appropriate description of the stakeholder's influence on the project life cycle? | B. Maximum at the start and then gradually weakens towards the end of the project.
# When is the earned-value approach appropriate to use. | A. When accurate and timely cost data are available.
# Within the five overlapping process groups of initiating, planning, executing, controlling and closing which processes dominate in all project phases? | D. They are all essential in each phase
# Which is/are the element(s) that may be a constraint in the project? | D. Cost, time, and quality
# During project plan execution: | D. The project manager uses corrective action to bring future performance in line with the project plan.
# Which is incorrect as the purpose of creating a Project plan? | D. Review the cost.
# The project closing process is essential to overall project planning. What is considered one of the most important steps in closing the project? | D. Satisfying the contractual obligations
# the development of long term goals set by executive management is called: | C. Strategic Planning
# ____________is a document that formally recognizes the existence of a project and provides direction on the projects objectives and management. | A. project charter
# Feasibility studies are performed in the ______ process group of the project. | A. Initiating
# Contingency reserves are intended to: | B. Involve cost, schedule or both
# In development of the project plan, which of the following elements should be included to reduce project risk? | C. Mitigation plans
# What is the last step in the four-stage planning process for selecting information technology projects? | D. resource allocation
# Regular changes, which are processed through the change control system: | D. Are coordinated and communicated across all functional areas of the project to ensure
# Which is the most appropriate description that explains a project team member? | D. The group that carries out the work of the project.
# In which process group do we transfer resources to other systems? | D. Closing
# Life-cycle costs are the total costs: | A. To the organization for the ownership and acquisition of the project over its full life.
# A project planning methodology is any structured approach used to guide the project team during development of the project plan. What is an example of this methodology? | A. Standard forms or templates.
# Project feasibility studies are conducted during which of the project phases? | A. Initiating
# In many application areas, configuration management is a subset of the change control system and is used to ensure that the description of the project's product is _______ and _______. | A. correct and complete
# Which is the one not included in the features of a project? | C. Fixed operation
# Under what situation should the PM issue updates to the approved cost baseline. | C. A change of scope has occurred.
# It estimates for total discounted benefits for a project are $120,000 and total discounted costs are $100,000, what is the estimated return on investment (ROI)? | C. 20 percent
# In scope management, decomposition involves: | A. Subdividing the major project deliverables into smaller and more manageable components.
# The project plan is a document designed to tell _____ exactly what should be happening in a given period of time. | A. Anyone associated with the project
# When should a change request be documented? | D. Client and contractor jointly document and approve the change before the work is scheduled
# What is an example of project integration? | A. Accounting provides the cost estimate required for the help center's contingency plan.
# Setting strategic project objectives are the responsibility of the: | C. Executive or user groups
# Who is directly responsible for satisfying project requirements? | C. The project manager.
# Which of the following items is not normally included in a project charter? | D. A Gantt chart
# The change control system must include all but which of the following | C. Verbal approvals
# In a program or project plan, there are always revisions to account for new or missing datA. Which one of the following provides the best reason for performing a revision of the plan? | B. Project tasks are crashed to meet their end dates
# All of the following are reasons project fail EXCEPT: | C. Planning and closing
# Changes are difficult and cumbersome to incorporate with the complex systems used by contractors. What is the reason for this difficulty? | A. The lack of detail available concerning the tasks to be achieved on a project
# The practice of overlapping phases is often called : | D. fast tracking
# One of the initial project documents, issued by senior management, which outlines the authority of the project manager, is called Project charter. As a seller, what other document can be used in this place: | C. Contract
# Which of the following functions does not pertain to the roles and responsibilities of the project manager ? | B. Staffing
## Another name of strategic planning is | D. Top down
# Which of the following is not a suggestion for performing integrated change control? | B. Minimize change
# The integrated project plan provides the baseline of: | C. which changes will be controlled
# Which is the correct explanation of Scope? | D. The sum of the products and services created as a project
# Which of the following is NOT a process in the project life cycle? | D. Project reporting
# Which is not an appropriate description of the work of Integrated Change Control? | B. Change the Schedule only.
# In which organization are the project manager's independence and authority weakest? | A. Functional organization
# Project Management is : | B. Needed because the functional organization and its methods of planning and control cannot otherwise assure that complex projects will be completed on time.
# During the planning development process, at times it is necessary to make certain assumptions to enhance the project plan when the data is not available. In regard to making those assumptions, which one of the following is most true for project planning purposes? | A. The assumptions will be considered as true, real, or certain.
# In the integration management process, the project plan development uses the outputs of the other planning processes to create a consistent, coherent document that can be used to guide both project ________ and project __________. | A. Execution, control
# ___________ensures that the description of the project's products are correct and complete | A. Configuration management
# The unique identifiers assigned to each item of a WBS are often known collectively as: | C.The code of accounts
# Which of the following is a common characteristic of most project life cycle descriptions? | A.Cost and staffing are low at the start, higher towards the end, and drop rapidly as the project nears completion.
# Which tool or technique for collecting requirements is often the most expensive and time consuming? | A. interviews
# Which of the following is NOT an example of a type of schedule report? | C.fishbone diagram
# What is the difference between scope verification and quality control? | D.Scope verification is primarily concerned with the acceptance of work results while quality control is primarily concerned with the correctness of work results.
# Project scope is: | A.The work that must be done in order to deliver a product with the specified features and functions.
# Assume you have a project with major categories called planning, analysis, design, and testing. What level of the WBS would these items fall under? | C. 2
# A document which describes how project scope will be managed and how scope changes will be integrated into the project is: (choose the best answer) | C.A scope management plan
# Which of the following is not a suggestion for improving user input? | D. Only have meetings as needed, not on a regular basis
# Which of the following are outputs of the Scope Verification Process? | C.Formal acceptance
# What is the purpose of the WBS? | B.To ensure that all work within a project is identified and defined within a common framework.
# A _______ is a deliverable-oriented grouping of the work involved in a project that defines the total scope of the project | B. WBS
# Which of the following tools and techniques are commonly used in the Scope Definition Process? | D.WBS templates
# Which of the following Project Scope Management processes involves subdividing the major project deliverables into smaller, more manageable components? | D.Scope Definition
# Project management software helps you develop a ______ which serves as a basis for creating Gantt charts, assigning resources, and allocating costs. | C. WBS
# ________refer(s) to all the work involved in creating the products of the project and the processes used to created them | C. Scope
# What is the primary purpose of a milestone chart? | C.To show significant events in the project such as completion of key deliverables.
# Which of the following could be an appropriate WBS code for a work package at the fourth level in a WBS where the top level code is 1.0? | B.1.1.1.1
# What approach to developing a WBS involves writing down or drawing ideas in a non-linear format? | D. mind mapping
# Which of the following statements concerning a scope statement are true? | A.It provides a documented basis for making future project decisions and for developing common understanding of the project scope among stakeholders.
# Scope _________ is often achieved by a customer inspection and then sign-off on key deliverables. | A. verification
# Which of the following is not a best practice that can help in avoiding scope problems on information technology projects? | D. Dont involve too many users in scope management
# Who should contribute to the development of the project plan? | B.Entire project team including project manager
# A project plan is: | A.A formal, approved document used to guide both project execution and project control.
# Which of the following statements is false? | D. Fast tracking is a technique for making cost and schedule trade-off to obtain the greatest amount of schedule compression for the least incremental cost,