|
1 |
| -const questionList = [ |
| 1 | +interface Question { |
| 2 | + question: string |
| 3 | + answers: string[] |
| 4 | + correctAnswer: number[] |
| 5 | +} |
| 6 | + |
| 7 | +const questionList: Question[] = [ |
2 | 8 | {
|
3 | 9 | question: 'Who creates the Definition of Done?',
|
4 | 10 | answers: [
|
@@ -758,7 +764,7 @@ const questionList = [
|
758 | 764 | },
|
759 | 765 | {
|
760 | 766 | question:
|
761 |
| - 'A product Increment must be released to production at the end of each Sprint.v', |
| 767 | + 'A product Increment must be released to production at the end of each Sprint.', |
762 | 768 | answers: ['True.', 'False.'],
|
763 | 769 | correctAnswer: [2]
|
764 | 770 | },
|
@@ -2633,10 +2639,40 @@ const questionList = [
|
2633 | 2639 | correctAnswer: [3]
|
2634 | 2640 | },
|
2635 | 2641 | {
|
2636 |
| - qeustion: |
| 2642 | + question: |
2637 | 2643 | 'True or False: The Product Backlog might commit to a Product Goal.',
|
2638 | 2644 | answers: ['True', 'False'],
|
2639 | 2645 | correctAnswer: [2]
|
| 2646 | + }, |
| 2647 | + { |
| 2648 | + question: |
| 2649 | + 'True or False: An Increment can only be released after a Sprint is over.', |
| 2650 | + answers: ['True', 'False'], |
| 2651 | + correctAnswer: [2] |
| 2652 | + }, |
| 2653 | + { |
| 2654 | + question: `True or False: If the Definition of Done for an Increment is part of the organization's standards, all Scrum Teams must follow it as a minimum.`, |
| 2655 | + answers: ['True', 'False'], |
| 2656 | + correctAnswer: [1] |
| 2657 | + }, |
| 2658 | + { |
| 2659 | + question: 'Which of the following best describes the Increment?', |
| 2660 | + answers: [ |
| 2661 | + 'The Increment cannot be released during the Sprints; the Product Owner must wait for the Sprint to be over to release it.', |
| 2662 | + 'The Increment is released at the end of every Sprint.', |
| 2663 | + 'The moment a Product Backlog item meets the Definition of Done, an Increment is born.' |
| 2664 | + ], |
| 2665 | + correctAnswer: [3] |
| 2666 | + }, |
| 2667 | + { |
| 2668 | + question: 'Who creates the Definition of Done?', |
| 2669 | + answers: [ |
| 2670 | + `The Product Owner as he/she is responsible for the product's success`, |
| 2671 | + `The Scrum Team, in a collaborative effort where the result is the common denominator of all members' definitions`, |
| 2672 | + 'The development organization (or Scrum Team if none is available from the development organization)', |
| 2673 | + `The Scrum Master as he/she is accountable for the Scrum Team’s effectiveness.` |
| 2674 | + ], |
| 2675 | + correctAnswer: [3] |
2640 | 2676 | }
|
2641 | 2677 | ]
|
2642 | 2678 |
|
|
0 commit comments