Skip to content

Commit 861885d

Browse files
committed
Add new questions to the quiz
1 parent 23a078d commit 861885d

File tree

1 file changed

+39
-3
lines changed

1 file changed

+39
-3
lines changed

src/quiz.ts

Lines changed: 39 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
const questionList = [
1+
interface Question {
2+
question: string
3+
answers: string[]
4+
correctAnswer: number[]
5+
}
6+
7+
const questionList: Question[] = [
28
{
39
question: 'Who creates the Definition of Done?',
410
answers: [
@@ -758,7 +764,7 @@ const questionList = [
758764
},
759765
{
760766
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.',
762768
answers: ['True.', 'False.'],
763769
correctAnswer: [2]
764770
},
@@ -2633,10 +2639,40 @@ const questionList = [
26332639
correctAnswer: [3]
26342640
},
26352641
{
2636-
qeustion:
2642+
question:
26372643
'True or False: The Product Backlog might commit to a Product Goal.',
26382644
answers: ['True', 'False'],
26392645
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]
26402676
}
26412677
]
26422678

0 commit comments

Comments
 (0)