-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsm.html
10555 lines (10541 loc) · 431 KB
/
psm.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="/jq-1.8.3.js"></script>
<script>
window.class=[
{
"_id": "62839662cee20723cdcb4b9c",
"key4": "0",
"key3": "1",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>It is a demo at the end of Sprint for everyone in the organization to check on the work done.</p>",
"optimizeLabel": "1",
"answer3": "<p>It is when the Scrum Team and stakeholders inspect the outcome of a Sprint and figure out what to do next.</p>",
"analysis": "",
"type": "1",
"difficult": "middle",
"answer2": "<p>It is a mechanism to control the Developers activities during a Sprint.</p>",
"cop_id": "412804",
"answer4": "<p>It is used to congratulate the Developers if they complete their forecast or to punish the Developers if they fail to meet their forecast.</p>",
"create_date": "2022-05-17 20:34:42",
"disorder": "0",
"classification": "1867932",
"question": "<p>Which statement best describes the Sprint Review?(Choose the best answer).</p>",
"test_id": "62839662cee20723cdcb4b9c",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "625e9816e04d5c11c80db3a6",
"classificationId": "1867760",
"classificationName": "Scrum Org模拟题",
"type": "1",
"difficult": "simple",
"question": "How often should Development Team membership change?",
"answer1": "As needed, while taking into account a short term reduction in productivity.",
"answer2": "Never, because it reduces productivity.",
"answer3": "As needed, with no special allowance for changes in productivity.",
"answer4": "Every Sprint to promote shared learning.",
"disorder": 1,
"key1": "1",
"key2": "0",
"key3": "0",
"key4": "0",
"tab_num": "4",
"status": "enable",
"create_date": "2022-04-19 19:08:06",
"creater": "13524928839@412804",
"cop_id": "412804",
"optimizeLabel": "1",
"classification": "1867932",
"test_id": "625e9816e04d5c11c80db3a6",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "625fa607cee207165569ca90",
"key4": "0",
"key3": "0",
"key5": "0",
"tab_num": "5",
"status": "enable",
"key2": "0",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<span>It can’t. Only Product Owners can cancel Sprints.</span>",
"optimizeLabel": "1",
"answer3": "<p>When the Product Owner is absent too often.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>When functional expectations are not well understood.</p>",
"cop_id": "412804",
"answer5": "<p>When a technical dependency cannot be resolved.</p>",
"answer4": "<p>When the selected Product Backlog items for the Sprint become unachievable.</p>",
"create_date": "2022-04-20 14:19:51",
"disorder": "1",
"classification": "1867932",
"question": "<p>When can a Development Team cancel a Sprint?</p>",
"test_id": "625fa607cee207165569ca90",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "6263e2b5cee20777fb63d2bc",
"key4": "1",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"modified_time": "2022-09-10 21:13:13",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>Without a new vocabulary as a reminder of the change, very little change may actually happen.</p>",
"optimizeLabel": "1",
"answer3": "<p>Management may feel less anxious.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>The organization may not understand what has changed with Scrum and the benefits of Scrum may be lost.</p>",
"cop_id": "412804",
"answer4": "<p>All answers apply</p>",
"modifier": "学生",
"create_date": "2022-04-23 19:27:49",
"disorder": "1",
"classification": "1867932",
"question": "<p>An organization has decided to adopt Scrum, but management wants to \nchange the terminology to fit with terminology already used. What will \nlikely happen if this is done?</p><p>(choose the best answer)</p>",
"test_id": "6263e2b5cee20777fb63d2bc",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "D"
},
{
"_id": "625f7a9fe04d5c36b1008d88",
"key4": "1",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>A defined and predictive process that confirms to the principles of Scientific Management.</p>",
"optimizeLabel": "1",
"answer3": "<p>A cookbook that defines best practices for software development.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>A complete methodology that defines how to develop software.</p>",
"cop_id": "412804",
"answer4": "<span>A framework within which complex products in complex environments are developed.</span>",
"create_date": "2022-04-20 11:14:39",
"disorder": "1",
"classification": "1867932",
"question": "<p>Which statement best describes Scrum?</p>",
"test_id": "625f7a9fe04d5c36b1008d88",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "D"
},
{
"_id": "625f7d5fcee207165569a91c",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<span>When it makes sense.</span>",
"optimizeLabel": "1",
"answer3": "<p>Whenever the product is free of defects.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>To make sure the Development Team is done every Sprint.</p>",
"cop_id": "412804",
"answer4": "<p>Without exception.</p>",
"create_date": "2022-04-20 11:26:23",
"disorder": "1",
"classification": "1867932",
"question": "<p>The Product Owner must release each Increment to production.</p>",
"test_id": "625f7d5fcee207165569a91c",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "6277d0bde04d5c49c9d69bc6",
"key4": "0",
"key3": "1",
"tab_num": "4",
"status": "enable",
"key2": "0",
"modified_time": "2023-06-08 21:15:12",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The Scrum Team includes not only developers but also business analysts, architects, and testers.<br/></p>",
"optimizeLabel": "1",
"answer3": "<p>The Scrum Team includes cross-skilled individuals who are able to contribute to do what is necessary to deliver an Increment.<br/></p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>Developers on the Scrum Team work closely with business analysts, architects, developers, and testers who are not on the team.<br/></p>",
"cop_id": "412804",
"answer4": "<p>The Scrum Team is a virtual team drawing from separate teams of business analysts, architects, developers, and testers.<br/></p>",
"modifier": "学生",
"create_date": "2022-05-08 22:16:29",
"disorder": "1",
"classification": "1867932",
"question": "<p>What does it mean for Scrum Team to be corss-functional?<br/></p>",
"test_id": "6277d0bde04d5c49c9d69bc6",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "625e9816e04d5c11c80db3aa",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"modified_time": "2022-09-11 20:52:38",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<p>When it makes sense.</p>",
"optimizeLabel": "1",
"answer3": "<p>Whenever the product is free of defects.</p>",
"analysis": "<p>无</p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>When the Scrum Team finishes their work.</p>",
"cop_id": "412804",
"answer4": "<p>After every Sprint, Without exception</p>",
"modifier": "学生",
"create_date": "2022-04-19 19:08:06",
"disorder": "1",
"classification": "1867932",
"question": "<p>When must a Product Owner release each Increment? </p><p>(Choose the best answer.)</p>",
"test_id": "625e9816e04d5c11c80db3aa",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "625e9f5acee2071655696e1a",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<span>Understanding the product, the product vision and the rules of the Scrum framework, the group divides itself into teams.</span>",
"optimizeLabel": "1",
"answer3": "<p>Check with the allocation department to see who has worked together before and make these the first teams.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>It doesn’t really matter because you can rotate the teams every Sprint to spread knowledge.</p>",
"cop_id": "412804",
"answer4": "<p>Create a matrix of skills, seniority, and level of experience to assign people to teams.</p>",
"create_date": "2022-04-19 19:39:06",
"disorder": "1",
"classification": "1867932",
"question": "<p>In accordance with Scrum theory, how should a group of 100 people be divided into multiple Development Teams?</p>",
"test_id": "625e9f5acee2071655696e1a",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "625e9816e04d5c11c80db3a0",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "1",
"modified_time": "2022-09-11 19:25:42",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>At the beginning of the project.</p>",
"optimizeLabel": "1",
"answer3": "<p>Prior to the Sprint Planning meeting.</p>",
"analysis": "<p>无</p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>During the Sprint Planning meeting.</p>",
"cop_id": "412804",
"answer4": "<p>During the Sprint.</p>",
"modifier": "学生",
"create_date": "2022-04-19 19:08:06",
"disorder": "1",
"classification": "1867932",
"question": "<p>When is the Sprint Backlog created?</p>",
"test_id": "625e9816e04d5c11c80db3a0",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "625fa7cbe04d5c36b100df54",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "1",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The Scrum Master.</p>",
"optimizeLabel": "1",
"answer3": "<p>The Product Owner.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<span>The Development Team.</span>",
"cop_id": "412804",
"answer4": "<p>The most junior member of the Team.</p>",
"create_date": "2022-04-20 14:27:23",
"disorder": "1",
"classification": "1867932",
"question": "<p>Who is responsible for managing the progress of work during a Sprint?</p>",
"test_id": "625fa7cbe04d5c36b100df54",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "625e9816e04d5c11c80db3a1",
"key4": "0",
"key3": "1",
"tab_num": "4",
"status": "enable",
"key2": "0",
"modified_time": "2022-09-11 19:26:27",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The Development Team.</p>",
"optimizeLabel": "1",
"answer3": "<p>The Product Owner and the Development Team.</p>",
"analysis": "<p>PO必须要参与。</p><p>Scrum guide: \n1) "Only the Development Team can change its Sprint Backlog during the \nSprint"\n\n2) "If the work turns out to be different than the Development Team \nexpected, they collaborate with the Product Owner to negotiate the scope\n of Sprint Backlog within the Sprint."\n\n3) "The Product Owner can help to clarify the selected Product Backlog \nitems and make trade-offs. If the Development Team determines it has too\n much or too little work, it may renegotiate the selected Product \nBacklog items with the Product Owner."</p><p><br/></p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>The Product Owner and all stakeholders.</p>",
"cop_id": "412804",
"answer4": "<p>The Scrum Master, project manager and Development Team.</p>",
"modifier": "学生",
"create_date": "2022-04-19 19:08:06",
"disorder": "1",
"classification": "1867932",
"question": "<p>When a Development Team determines that it will not be able to finish the complete forecast, who has to be present when reviewing and adjusting the Sprint work selected? </p><p>(Choose the best answer.)</p>",
"test_id": "625e9816e04d5c11c80db3a1",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "6263e1bccee20777fb63d2b8",
"key4": "0",
"key3": "0",
"key5": "0",
"tab_num": "5",
"status": "enable",
"key2": "1",
"modified_time": "2022-09-10 21:15:06",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>Items are randomly arranged.</p>",
"optimizeLabel": "1",
"answer3": "<p>Risk, where safer items are at the top, and riskier items are at the bottom.</p>",
"analysis": "<p>The Product Owner is accountable for effective Product Backlog \nmanagement. The Product Backlog is an emergent, ordered list of what is \nneeded to improve the product. It is the single source of work \nundertaken by the Scrum Team.</p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>Whatever is deemed most appropriate by the Product Owner.</p>",
"cop_id": "412804",
"answer5": "<p>Size, where small items are at the top and large items are at the bottom.</p>",
"answer4": "<p>Least valuable items at the top to most valuable at the bottom.</p>",
"modifier": "学生",
"create_date": "2022-04-23 19:23:40",
"disorder": "1",
"classification": "1867932",
"question": "<p>The Product Backlog is ordered by:</p>",
"test_id": "6263e1bccee20777fb63d2b8",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "6263d961cee20777fb63ca40",
"key3": "0",
"tab_num": "3",
"status": "enable",
"key2": "1",
"modified_time": "2022-05-03 13:37:14",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The Sprint is extended and future Sprints use this new\r\nduration.</p>",
"optimizeLabel": "1",
"answer3": "<p>The Sprint is extended temporarily. Lessons are taken\r\nto ensure it doesn’t happen again.</p>",
"analysis": "<p>切记注意,Sprint不是随便可以延的。看一下载Sprint中能交付什么。<br></p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>The Sprint length holds and the Developers continuously learns what is actually possible to do within a Sprint of this\r\nlength.</p>",
"cop_id": "412804",
"modifier": "学生",
"create_date": "2022-04-23 18:48:01",
"disorder": "1",
"classification": "1867932",
"question": "<p>What\r\nhappens if the Developers cannot complete its work by the end of the\r\nSprint?</p>",
"test_id": "6263d961cee20777fb63ca40",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "6277cf45cee2070674096aa1",
"key4": "0",
"key3": "0",
"key5": "0",
"tab_num": "5",
"status": "enable",
"key2": "0",
"modified_time": "2022-09-10 16:32:17",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<p>The Developers<br/></p>",
"optimizeLabel": "1",
"answer3": "<p>The Product Owner<br/></p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>The Quality Assurance Team.<br/></p>",
"cop_id": "412804",
"answer5": "<p>The Scrum Master.<br/></p>",
"answer4": "<p>The Scrum Team<br/></p>",
"modifier": "学生",
"create_date": "2022-05-08 22:10:13",
"disorder": "1",
"classification": "1867932",
"question": "<p>Who does the work to make sure Product Backlog items conform to the Definition of Done?<br/></p>",
"test_id": "6277cf45cee2070674096aa1",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "62791bc5cee20732648c8081",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "1",
"modified_time": "2022-09-10 16:23:58",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>During Product Backlog refinement.<br/></p>",
"optimizeLabel": "1",
"answer3": "<p>Prior to starting a new project.<br/></p>",
"analysis": "<p>在Scrum Guide中有写到。<br/></p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>During the Sprint Retrospective.<br/></p>",
"cop_id": "412804",
"answer4": "<p>During Sprint Planning.<br/></p>",
"modifier": "学生",
"create_date": "2022-05-09 21:48:53",
"disorder": "1",
"classification": "1867932",
"question": "<p>When is the most appropriate for a Scrum Team to change the Definition of Done?</p><p>(Choose the best answer).<br/></p>",
"test_id": "62791bc5cee20732648c8081",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "625e9d27e04d5c11c80db51d",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<span>There are no such activities. The next Sprint starts immediately after the current Sprint.</span>",
"optimizeLabel": "1",
"answer3": "<p>Work with the Quality Assurance departments on the Increment of the current Sprint.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>Refine the Product Backlog.</p>",
"cop_id": "412804",
"answer4": "<p>Update the project plan with stakeholders.</p>",
"create_date": "2022-04-19 19:29:43",
"disorder": "1",
"classification": "1867932",
"question": "<p>What activities would a Product Owner typically undertake in the phase \r\nbetween the end of the current Sprint and the start of the next Sprint?</p>",
"test_id": "625e9d27e04d5c11c80db51d",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "625f88d9e04d5c36b100a5a7",
"key4": "0",
"key3": "1",
"tab_num": "4",
"status": "enable",
"key2": "0",
"modified_time": "2022-04-20 12:32:28",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>To gather status and progress information to report to management.</p>",
"optimizeLabel": "1",
"answer3": "<span>He or she does not have to be there; he or she only has to ensure the Development Team has a Daily Scrum.</span>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>To write down any changes to the Sprint Backlog, including adding new items, and tracking progress on the burn-down.</p>",
"cop_id": "412804",
"answer4": "<p>To make sure every team member answers the three questions.</p>",
"modifier": "学生",
"create_date": "2022-04-20 12:15:21",
"disorder": "1",
"classification": "1867932",
"question": "<p>What it the main reason for the Scrum Master to be at the Daily Scrum?</p>",
"test_id": "625f88d9e04d5c36b100a5a7",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "625fa655cee207165569cae1",
"key4": "0",
"key3": "0",
"key5": "0",
"tab_num": "5",
"status": "enable",
"key2": "1",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The person coming in last. This encourages people to be on time and helps to stay within the time-box.</p>",
"optimizeLabel": "1",
"answer3": "<p>The person who has the token.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<span>Whoever the Development Team decides should start.</span>",
"cop_id": "412804",
"answer5": "<p>The person who last broke the build.</p>",
"answer4": "<p>The Scrum Master. This ensures that the Development Team has the meeting and stays within the time-box.</p>",
"create_date": "2022-04-20 14:21:09",
"disorder": "1",
"classification": "1867932",
"question": "<p>Who starts the Daily Scrum?</p>",
"test_id": "625fa655cee207165569cae1",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "62791ac0cee20732648c8049",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "1",
"modified_time": "2022-09-10 16:25:03",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>All Development work and at least some testing.<br/></p>",
"optimizeLabel": "1",
"answer3": "<p>A proportional amount of time on analysis, design, development, and testing.<br/></p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>As much as is required to meet the Scrum Teams's Definition of Done.<br/></p>",
"cop_id": "412804",
"answer4": "<p>As much as they can fit into the Sprint, with remaining work deferred to the next Sprint.<br/></p>",
"modifier": "学生",
"create_date": "2022-05-09 21:44:32",
"disorder": "1",
"classification": "1867932",
"question": "<p>How much work is required of the Developers to complete a Product Backlog item selected during the Sprint Planning? </p><p>(Choose the best answer).<br/></p>",
"test_id": "62791ac0cee20732648c8049",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "625f7d9be04d5c36b10090d9",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "1",
"modified_time": "2022-05-08 16:00:12",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<span>The Sprint Backlog.</span>",
"optimizeLabel": "1",
"answer3": "<p>The release plan.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>The Sprint Goal.</p><span></span>",
"cop_id": "412804",
"answer4": "<p>Sprint Review minutes.</p>",
"modifier": "学生",
"create_date": "2022-04-20 11:27:23",
"disorder": "1",
"classification": "1867932",
"question": "<p>Which output from Sprint Planning provides the Development Team with a target and overarching direction for the Sprint?</p>",
"test_id": "625f7d9be04d5c36b10090d9",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "6263d986e04d5c43f4f39b9b",
"key4": "0",
"key3": "1",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The Scrum process, and how it was used during the\r\nSprint.</p>",
"optimizeLabel": "1",
"answer3": "<p>Sprint results.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>Coding and engineering practices.</p>",
"cop_id": "412804",
"answer4": "<p>All of the above.</p>",
"create_date": "2022-04-23 18:48:38",
"disorder": "1",
"classification": "1867932",
"question": "<p>Which\r\ntopics should be discussed in the Sprint Review?</p>",
"test_id": "6263d986e04d5c43f4f39b9b",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "625e9ea1e04d5c11c80db5de",
"key4": "0",
"key3": "0",
"key5": "0",
"tab_num": "5",
"status": "enable",
"key2": "0",
"modified_time": "2022-09-11 18:55:29",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<p>There is no such thing as Sprint 0.</p>",
"optimizeLabel": "1",
"answer3": "<p>Make the complete project plan to commit date, budget, and scope to the stakeholders.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>Gathering, eliciting, and analyzing the requirements that will be inserted into the Product Backlog.</p>",
"cop_id": "412804",
"answer5": "<p>Make sure enough Product Backlog items are refined to fill the first 3 Sprints.</p>",
"answer4": "<p>Determine the composition of the Development Teams so they have the capacity to deliver the completed forecast.</p>",
"modifier": "学生",
"create_date": "2022-04-19 19:36:01",
"disorder": "1",
"classification": "1867932",
"question": "<p>What is the accountability of the Product Owner during Sprint 0? </p><p>(Choose the best answer.)</p>",
"test_id": "625e9ea1e04d5c11c80db5de",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "625e7333e04d5c11c80d9c41",
"classificationId": "1867760",
"classificationName": "Scrum Org官方题1",
"type": "1",
"difficult": "simple",
"question": "Who is responsible for clearly expressing Product Backlog items?",
"answer1": "The Scrum Master, or the Scrum Master may have Developments do it.",
"answer2": "The Scrum Master.",
"answer3": "The Product Owner.",
"answer4": "The business analyst who represents the Product Owner in the Development Team.",
"disorder": 1,
"key1": "0",
"key2": "0",
"key3": "1",
"key4": "0",
"tab_num": "4",
"status": "enable",
"create_date": "2022-04-19 16:30:43",
"creater": "13524928839@412804",
"cop_id": "412804",
"optimizeLabel": "1",
"classification": "1867932",
"test_id": "625e7333e04d5c11c80d9c41",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "6263d9aecee20777fb63ca42",
"key4": "0",
"key3": "0",
"key5": "1",
"tab_num": "5",
"status": "enable",
"key2": "0",
"modified_time": "2022-09-10 21:24:32",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>Add security to the definition of "Done".</p>",
"optimizeLabel": "1",
"answer3": "<p>Create a Product Backlog item for security.</p>",
"analysis": "<p>重点是As soon as possible,需要尽快解决。<br/></p>",
"type": "1",
"difficult": "simple",
"answer2": "<p>Tell the Product Owner to stop further development of\nfeatures until the issues are fixed.</p>",
"cop_id": "412804",
"answer5": "<p>Ask the person to share the issue with the team as\nsoon as possible.</p>",
"answer4": "<p>Go check with the testers.</p>",
"modifier": "学生",
"create_date": "2022-04-23 18:49:18",
"disorder": "1",
"classification": "1867932",
"question": "<p>A\nmember of the Developers takes the Scrum Master aside to express his\nconcerns about data security issues. What should the Scrum Master do?</p>",
"test_id": "6263d9aecee20777fb63ca42",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "E"
},
{
"_id": "625f7f68cee207165569ab13",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<span>There’s less initial disruption than \r\norganizing into new teams. As they start, they will discover what works \r\nbest, and how to potentially re-organize towards this.</span>",
"optimizeLabel": "1",
"answer3": "<p>Because they have worked together for some time, they are likely able to\r\n start producing shippable Increments faster that new feature teams \r\nwould.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>Component teams generally have the skills needed to create a working Increment of software that provides business value.</p>",
"cop_id": "412804",
"answer4": "<p>There are fewer cross-team dependencies than working in feature teams.</p>",
"create_date": "2022-04-20 11:35:04",
"disorder": "1",
"classification": "1867932",
"question": "<p>You have six teams using a traditional method to deliver a product. Your\r\n management has asked you to start using Scrum. In the initial project \r\nthere were separate plans and teams for the layers of a software system,\r\n i.e. one for the front-end, one for the middle tier, one for the \r\nback-end, and one for the interfaces and services. This resembles what \r\nis known as component teams. But you have read that it’s a good idea to \r\nhave teams organized by feature. <br></p><p>What are the advantages of keeping component teams while starting Scrum?</p>",
"test_id": "625f7f68cee207165569ab13",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "6263cad8e04d5c43f4f399ad",
"key4": "0",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "1",
"creater": "13524928839@412804",
"answer1": "<p>How will we make sure all teams have the\r\nright amount of expertise?</p>",
"optimizeLabel": "1",
"answer3": "<p>Who are going to be the team leads?</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>What is the right mixture of senior and\r\njunior people on each team?</p>",
"cop_id": "412804",
"answer4": "<p>Who are the subject matter experts on\r\neach team?</p>",
"create_date": "2022-04-23 17:46:00",
"disorder": "1",
"classification": "1867932",
"question": "<p>You are the Scrum Master\r\nof a new, to be developed product. Development is going to require 45 people.\r\nWhat is a good first question for you to suggest the group thinks about when\r\nforming into teams?</p>",
"test_id": "6263cad8e04d5c43f4f399ad",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "A"
},
{
"_id": "625f7dcbcee207165569a93a",
"key4": "1",
"key3": "0",
"tab_num": "4",
"status": "enable",
"key2": "0",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>The event must happen at a set time.</p>",
"optimizeLabel": "1",
"answer3": "<p>The event must take at least a minimum amount of time.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>The event must happen by a given time.</p>",
"cop_id": "412804",
"answer4": "<span>The event can take no more than a maximum amount of time.</span>",
"create_date": "2022-04-20 11:28:11",
"disorder": "1",
"classification": "1867932",
"question": "<p>What does it mean to say that an event has a time-box?</p>",
"test_id": "625f7dcbcee207165569a93a",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "D"
},
{
"_id": "6263cd16cee20777fb63c0b6",
"key4": "0",
"key3": "0",
"key5": "1",
"tab_num": "5",
"status": "enable",
"key2": "0",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>It should have been created in the\r\nprevious Sprint during Product Backlog refinement.</p>",
"optimizeLabel": "1",
"answer3": "<p>A Sprint Goal is not mandatory in Scrum.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<p>It must be established before Sprint\r\nPlanning in order to begin planning.</p>",
"cop_id": "412804",
"answer5": "<p>During Sprint Planning.</p>",
"answer4": "<p>At any time during the Sprint.</p>",
"create_date": "2022-04-23 17:55:34",
"disorder": "1",
"classification": "1867932",
"question": "<p>When should a Sprint\r\nGoal be created?</p>",
"test_id": "6263cd16cee20777fb63c0b6",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "E"
},
{
"_id": "625e7333e04d5c11c80d9c43",
"classificationId": "1867760",
"classificationName": "Scrum Org官方题1",
"type": "1",
"difficult": "simple",
"question": "As Developments starts work during the Sprint, it realizes it has selected too much work to finish in the Sprint. What should it do?",
"answer1": "Inform the Product Owner at the Sprint Review, but prior to the demonstration.",
"answer2": "Find another Scrum Team to give the excess work to.",
"answer3": "As soon as possible in the Sprint, work with the Product Owner to remove some work or Product Backlog items.",
"answer4": "Reduce the definition of “Done” and get all of the Product Backlog items “Done” by the new definition.",
"disorder": 1,
"key1": "0",
"key2": "0",
"key3": "1",
"key4": "0",
"tab_num": "4",
"status": "enable",
"create_date": "2022-04-19 16:30:43",
"creater": "13524928839@412804",
"cop_id": "412804",
"optimizeLabel": "1",
"classification": "1867932",
"test_id": "625e7333e04d5c11c80d9c43",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "C"
},
{
"_id": "625f8a1acee207165569c253",
"key4": "0",
"key3": "0",
"key5": "0",
"tab_num": "5",
"status": "enable",
"key2": "1",
"modified_time": "2022-04-20 12:32:05",
"key1": "0",
"creater": "13524928839@412804",
"answer1": "<p>Two minutes per person.</p>",
"optimizeLabel": "1",
"answer3": "<p>15 minutes for a 4 week sprint. For shorter Sprints it is usually shorter.</p>",
"analysis": "",
"type": "1",
"difficult": "simple",
"answer2": "<span>15 minutes.</span>",
"cop_id": "412804",
"answer5": "<p>The same time of day every day.</p>",
"answer4": "<p>4 hours.</p>",
"modifier": "学生",
"create_date": "2022-04-20 12:20:42",
"disorder": "1",
"classification": "1867932",
"question": "<p>The time-box for a Daily Scrum?</p>",
"test_id": "625f8a1acee207165569c253",
"optionsDisorder": 0,
"questionOffline": 0,
"audioMaxPlayTimes": -1,
"checked_analysis": 0,
"test_ans": "",
"test_ans_right": "B"
},
{
"_id": "625e7333e04d5c11c80d9c42",
"classificationId": "1867760",
"classificationName": "Scrum Org官方题1",
"type": "1",
"difficult": "simple",
"question": "When is implementation of a Product Backlog item considered complete?",
"answer1": "At the end of the Sprint.",
"answer2": "When the item has no work remaining in order to be potentially released.",
"answer3": "When QA reports that the item passes all acceptance criteria.",
"answer4": "When all work in the Sprint Backlog related to the item is finished.",
"disorder": 1,
"key1": "0",
"key2": "1",