Skip to content

Commit

Permalink
more q
Browse files Browse the repository at this point in the history
  • Loading branch information
YiweiShen committed Jan 30, 2024
1 parent 9017307 commit 23a078d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/quiz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2610,6 +2610,33 @@ const questionList = [
question: 'The Scrum Master is a manager.',
answers: ['True', 'False'],
correctAnswer: [1]
},
{
question:
'True or False: The only Product Backlog items that the Scrum Team can select during Sprint Planning are the ones considered Ready (i.e., can be done within one Sprint).',
answers: ['True', 'False'],
correctAnswer: [2]
},
{
question:
'True or False: The Product Goal represents the desired end state whenever all the Product Backlog items must be "Done."',
answers: ['True', 'False'],
correctAnswer: [2]
},
{
question: 'Which statement best describes a Product Backlog?',
answers: [
'Large Product Backlog items are described as Epics and smaller ones as User Stories.',
'Product Backlog items include test descriptions that prove their completeness when “Done.”',
'An emergent ordered list of what is needed to improve the product. It is the single source of work undertaken by the Scrum Team.'
],
correctAnswer: [3]
},
{
qeustion:
'True or False: The Product Backlog might commit to a Product Goal.',
answers: ['True', 'False'],
correctAnswer: [2]
}
]

Expand Down

0 comments on commit 23a078d

Please sign in to comment.