Sie sind auf Seite 1von 148

1/18/2020 Finished.

Title: Developer Open

Percentage: 73.3%

Duration: 00:14:56

Date started: Fri 17 Jan 2020 12:52

Date finished: Fri 17 Jan 2020 13:07

Feedback
Thank you for taking the Developer Open assessment of Scrum. Please read the Scrum Guide on Scrum.org and
take this assessment again to improve your score.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 22 Correct 8 Incorrect

Question 1 of 30

Product Backlog items are refined by:

(choose the best answer)

Correct answer: A)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

A) The Development Team and the Product Owner

  B) The Development Team

  C) The Business analyst and the Product Owner

D) The Product Owner solely

https://www.classmarker.com/online-test/results/ 1/14
1/18/2020 Finished.

Question 2 of 30

What is a unit test?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) A test that isolates and verifies individual units of source code.

  B) A way for the team to ensure that the system satisfies the user requirements.

  C) A way in which units of programmers ensure their code works.

  D) A technique for ensuring that units of co-dependent or clustered computers perform


correctly.

Question 3 of 30

Which types of tests can be automated?

(choose all that apply)

Correct answer: B) C) D) E) F)
You chose: B) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

  A) Exploratory
B) Functional
C) Integration
D) Smoke
E) Performance
F) Unit

Question 4 of 30

While changing software, you find a bug in a previously delivered piece of functionality. What
should you do?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 2/14
1/18/2020 Finished.
Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Fix the bug if it is critical or easily fixed. Otherwise, put the new bug into the Product
Backlog to be prioritized and fixed in an upcoming Sprint.
  B) Fix the bug.

  C) Stub out the code that caused the bug so it no longer occurs.

  D) Revise the tests so that the bug no longer appears on the bug report.

Feedback
Unless your company has specific guidance on fixing bugs, they represent work to be done and should be
ordered on the Product Backlog by the PO.

Two exceptions are if the work to fix the bug is less than the work to actually log it, or if the bug is so critical
that it would be negligent to leave it unfixed.

Question 5 of 30

Who should be present during Product Backlog refinement?

(choose all that apply)

Correct answer: C) D)
You chose: C) D)
Note: This question displayed answer options in random order when taking this Test.

  A) The external business analysts that have prepared the functional details.
  B) The stakeholders.
C) The Product Owner.
D) The Development Team.
  E) Only the most senior people from the Development Team.
  F) The integration architects from the release department.

Question 6 of 30

When are testers and quality experts ideally included in a project?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 3/14
1/18/2020 Finished.
Correct answer: A)
You chose: A)

A) From the beginning and throughout all Sprints.

  B) After Sprint Review.

  C) When the product is feature complete.

  D) After developer handoff.

Question 7 of 30

Why are automated builds important?

(choose the best answer)

Correct answer: D)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) You are unable to check-in code without one.

B) They are part of your "done" criteria.

  C) Without them you can't tell if your code works.

D) They provide rapid assurance that defects and configuration management issues have not
been introduced.

Feedback
Builds are just an extra level of validation to make sure that you still have a unit of potentially shippable
software. Automating builds makes that process very faster.

Question 8 of 30

Which is a benefit of establishing naming standards for code?

(choose the best answer)

Correct answer: B)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) To make it easy to distinguish between different software products.

B) To make the code more readable.

https://www.classmarker.com/online-test/results/ 4/14
1/18/2020 Finished.
  C) To ensure that "orphan functions" are not created.

  D) To communicate the name of the developer that worked on the code.

Question 9 of 30

True or False: Only technical writers can create documentation during a Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Question 10 of 30

What are three advantages of Continuous Integration?

(choose the best three answers)

Correct answer: A) B) C)
You chose: A) B) C)
Note: This question displayed answer options in random order when taking this Test.

A) The software is generally kept in a buildable state.


B) Know immediately how a check-in affected the build.
C) Broken builds are detected quickly.
  D) Readability of code is improved.

Question 11 of 30

Which of the following describe an architecture spike?

(choose the best answer)

Correct answer: A)
You chose: D)

A) A small development activity to learn about technical elements of a proposed solution

  B) The result of an exhaustive architectural planning effort


https://www.classmarker.com/online-test/results/ 5/14
1/18/2020 Finished.

  C) A decision made by a systems architect to settle disagreement within a Development Team

D) A fundamental architectural problem found in an existing application

Question 12 of 30

What is pair programming?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Two developers writing code together, providing constant peer review.

  B) Two programmers write code separately. A third programmer integrates the work.

  C) The Scrum Team is divided into several two-person Development Teams that consolidate
work in a Scrum of Scrums.
  D) A developer and a tester work together to write and test code.

  E) Managers doing performance reviews by comparing one programmer's code to another's.

Question 13 of 30

Select the desirable characteristics of a unit test.

(choose the best four answers)

Correct answer: B) C) D) E)
You chose: B) C) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) They exercise the persistence layer of a solution.


B) Each test makes assertions about only one logical concept.
C) Code in each test is as small as possible while maintaining readability of the code.
D) Each test is independent of other unit tests.
E) The test executes fast.

Question 14 of 30
https://www.classmarker.com/online-test/results/ 6/14
1/18/2020 Finished.

Which describes the practice of expressing requirements as acceptance tests?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Regression Testing

  B) Object Driven Requirements Definition.

C) Acceptance Test Driven Development

  D) Quality Oriented Requirements Definition.

Feedback
Advanced practices of test-driven development can lead to Acceptance Test-driven development (ATDD) where
the criteria specified by the customer are automated into acceptance tests, which then drive the traditional unit
test-driven development (UTDD) process.

Question 15 of 30

When a Continuous Integration build fails, who ideally ensures the build is repaired?

(choose the best answer)

Correct answer: A)
You chose: A)

A) The person who broke the build

  B) The person assigned to the configuration management role within the team

  C) The tester responsible for validating builds

  D) The next person who needs the build to complete successfully

Question 16 of 30

When does the Development Team participate in Product Backlog refinement?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 7/14
1/18/2020 Finished.
Correct answer: A)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

A) Anytime during the Sprint.

B) Never. It is the sole responsibility of the Product Owner to refine the Product Backlog.

  C) Only during refinement meetings planned by the Product Owner.

  D) As Part 1 of the Sprint Planning meeting.

Question 17 of 30

Which of the following are attributes of a bad bug report?

(choose the best three answers)

Correct answer: A) B) D)
You chose: A) B) D)
Note: This question displayed answer options in random order when taking this Test.

A) Vague statements or untested assumptions.


B) Generic titles.
  C) Simple and repeatable reproduction steps.
D) Assigning blame.
  E) One bug per report.

Question 18 of 30

Which statement describes test first development?

(choose the best answer)

Correct answer: A)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

A) Designing tests before satisfying them.

  B) Testing existing code before adding more code to it.

C) Having the tester in the Development Team write the test plans before coding.

  D) The continuous restructuring of software to retain flexibility.

https://www.classmarker.com/online-test/results/ 8/14
1/18/2020 Finished.

Question 19 of 30

When is a system's architecture decided?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) It is designed along with the vision, before the first Sprint.

  B) Whenever the assigned architect can join the Development Team.

C) Throughout the project, as understanding emerges and the Development Team learns more
about the project.
  D) In the beginning of the project, during Sprint 0.

Question 20 of 30

You are on a Scrum Team that is enhancing an existing product. Which is the LEAST useful piece
of documentation you want to have at your disposal?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Well-structured and named code.

B) The full history of retrospective plans and lessons learned.

  C) Acceptance tests.

  D) Detailed designs.

Question 21 of 30

Which of the following best describes Continuous Integration?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 9/14
1/18/2020 Finished.
Correct answer: B)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) A software development practice that continuously integrates feedback from users into
software design.
B) A software development practice where members of a development team integrate and
verify their work frequently, often multiple times each day, to detect integration errors as
quickly as possible.
  C) A software development practice where members of a development team all work on the
same computer to ensure a common code base.
D) A software development practice used by Integration Teams to create best practice
branching and merging strategies.

Question 22 of 30

Who writes tests in a Scrum Team?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The Scrum Master

B) The Development Team

  C) Quality Assurance Specialists

  D) Coders

Question 23 of 30

What are some shortcomings of code coverage as a measurement for how well a system or
product is tested?

(choose the best three answers)

Correct answer: C) D) E)
You chose: C) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Code coverage metrics vary by development platform (e.g., .NET, Java)


  B) It is too complicated to explain to management.
https://www.classmarker.com/online-test/results/ 10/14
1/18/2020 Finished.

C) Code coverage does not necessarily provide functional coverage.


D) Could create incentives to write tests that simply increase code coverage, rather than tests
that find bugs without increasing coverage.
E) Code coverage does not ensure that the most important or highest risk areas of the code
are being exercised by tests.

Feedback
Code coverage is a useful metric, but not in isolation. It should not be considered a replacement for effective
test design techniques.

Question 24 of 30

The definition of "Done" describes the work that must be completed for every Product Backlog
item before it can be deemed releasable. What should the Development Team do when, during the
Sprint, it finds out that a problem outside of their control blocks them from doing all this work?

(choose the best answer)

Correct answer: A)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

A) Immediately raise the issue to the Scrum Master as an impediment.

B) Cancel the Sprint.

  C) Complete the work that can be done on as much scope as possible and use the Sprint
Review to plan the rest with the stakeholders.
  D) Complete the work that can be done on as much scope as possible and complete the rest
during the "hardening" sprints at the end of the release.
  E) Stop using Scrum.

Question 25 of 30

Who must be present at the Daily Scrum meeting?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Scrum Master and the Development Team


https://www.classmarker.com/online-test/results/ 11/14
1/18/2020 Finished.

  B) No one is required, anyone who wishes to attend is welcome

C) The Development Team

  D) The entire Scrum Team

  E) Anyone who wants to attend

Feedback
The Daily Scrum is for the people transforming the Product Backlog items into an Increment. Only the people
that are building the product should be present at the Daily Scrum.

Question 26 of 30

Which statement describes how often the build should be executed?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Once per day.

  B) As often as possible, and certainly prior to the end of the Sprint.

C) Whenever new or changed code is checked into version control.

  D) Whenever the Quality Assurance group becomes uncertain that the system works.

Question 27 of 30

What relationship does Scrum have to technical practices?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) All technical practices must be used to support Scrum.

  B) None.

  C) Scrum requires specific technical practices or it isn't Scrum.

D) Scrum Development Teams with excellent technical practices will likely be more successful.

https://www.classmarker.com/online-test/results/ 12/14
1/18/2020 Finished.

Feedback
While technical practices aren't specifically included as a part of Scrum, the rapid pace of development using
Scrum often requires that good technical practices are utilized by Development Teams in order to be
successful.

Question 28 of 30

What is the value of refactoring code?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) To keep the code moving.

  B) To have all code in a single file for easy printing and code reviews.

  C) To make the software faster at runtime.

D) To improve readability and maintainability.

Question 29 of 30

What is Technical Debt?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The average time or money a Scrum Team spends per Sprint on bug fixes.

  B) Code that has not been commented or documented.

C) A term representing the eventual consequences of poor technical choices.

  D) The money an organization owes to tool and hardware vendors.

Question 30 of 30

https://www.classmarker.com/online-test/results/ 13/14
1/18/2020 Finished.

Which of the following are benefits of Continuous Integration?

(choose the best two answers)

Correct answer: A) B)
You chose: A) B)
Note: This question displayed answer options in random order when taking this Test.

A) Causes team members to consider each other's work and context.


B) It leads to higher transparency and rapid feedback to the team.
  C) It eliminates bugs completely.
  D) The build is executed once every night and at least once each weekend.

https://www.classmarker.com/online-test/results/ 14/14
1/18/2020 Finished.

Title: Developer Open

Percentage: 76.7%

Duration: 00:16:46

Date started: Sat 18 Jan 2020 01:23

Date finished: Sat 18 Jan 2020 01:39

Feedback
Thank you for taking the Developer Open assessment of Scrum. Please read the Scrum Guide on Scrum.org and
take this assessment again to improve your score.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 23 Correct 7 Incorrect

Question 1 of 30

Which of the following best describes Continuous Integration?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) A software development practice used by Integration Teams to create best practice


branching and merging strategies.
  B) A software development practice where members of a development team all work on the
same computer to ensure a common code base.
  C) A software development practice that continuously integrates feedback from users into
software design.

https://www.classmarker.com/online-test/results/ 1/14
1/18/2020 Finished.
D) A software development practice where members of a development team integrate and
verify their work frequently, often multiple times each day, to detect integration errors as
quickly as possible.

Question 2 of 30

When are testers and quality experts ideally included in a project?

(choose the best answer)

Correct answer: A)
You chose: A)

A) From the beginning and throughout all Sprints.

  B) After Sprint Review.

  C) When the product is feature complete.

  D) After developer handoff.

Question 3 of 30

What happens during Sprint 0?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Establish base system architecture and design, install version control and continuous
integration setup.
B) There is no such thing as Sprint 0.

  C) Base system architecture and design.

  D) Overall planning, base system architecture, base design, version control and continuous
integration setup.
  E) Requirements gathering, version control setup, and continuous integration setup.

Feedback
Scrum does not include the concept of a Sprint 0. "Sprint 0" has become a phrase misused to describe the
planning that occurs prior to the first sprint.

https://www.classmarker.com/online-test/results/ 2/14
1/18/2020 Finished.

Question 4 of 30

Which describes the practice of expressing requirements as acceptance tests?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Regression Testing

  B) Object Driven Requirements Definition.

C) Acceptance Test Driven Development

  D) Quality Oriented Requirements Definition.

Feedback
Advanced practices of test-driven development can lead to Acceptance Test-driven development (ATDD) where
the criteria specified by the customer are automated into acceptance tests, which then drive the traditional unit
test-driven development (UTDD) process.

Question 5 of 30

What relationship does Scrum have to technical practices?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) All technical practices must be used to support Scrum.

  B) None.

  C) Scrum requires specific technical practices or it isn't Scrum.

D) Scrum Development Teams with excellent technical practices will likely be more successful.

Feedback
While technical practices aren't specifically included as a part of Scrum, the rapid pace of development using
Scrum often requires that good technical practices are utilized by Development Teams in order to be
successful.

https://www.classmarker.com/online-test/results/ 3/14
1/18/2020 Finished.

Question 6 of 30

What is code coverage?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The degree to which the system under test has been exercised by tests.

  B) The number of developers that understand how the code works.

  C) An insurance policy that covers the code for defects.

  D) The percent of code in version control included in a build.

Question 7 of 30

What is NOT Test-Driven Development?

(choose the best answer)

Correct answer: D)
You chose: D)

  A) A software development technique based on automated tests.

  B) An incremental and emergent approach to software design.

  C) A predictable way to develop working, clean code.

D) Testing existing software before developing any new software.

Question 8 of 30

What are three advantages of Continuous Integration?

(choose the best three answers)

Correct answer: A) B) C)
You chose: A) B) C)
Note: This question displayed answer options in random order when taking this Test.

A) The software is generally kept in a buildable state.


https://www.classmarker.com/online-test/results/ 4/14
1/18/2020 Finished.

B) Know immediately how a check-in affected the build.


C) Broken builds are detected quickly.
  D) Readability of code is improved.

Question 9 of 30

Which of the following are benefits of Continuous Integration?

(choose the best two answers)

Correct answer: A) D)
You chose: A) D)
Note: This question displayed answer options in random order when taking this Test.

A) Causes team members to consider each other's work and context.


  B) It eliminates bugs completely.
  C) The build is executed once every night and at least once each weekend.
D) It leads to higher transparency and rapid feedback to the team.

Question 10 of 30

Select the desirable characteristics of a unit test.

(choose the best four answers)

Correct answer: A) B) C) D)
You chose: A) B) C) D)
Note: This question displayed answer options in random order when taking this Test.

A) Code in each test is as small as possible while maintaining readability of the code.
B) Each test makes assertions about only one logical concept.
C) The test executes fast.
D) Each test is independent of other unit tests.
  E) They exercise the persistence layer of a solution.

Question 11 of 30

https://www.classmarker.com/online-test/results/ 5/14
1/18/2020 Finished.

Who should be present during Product Backlog refinement?

(choose all that apply)

Correct answer: A) D)
You chose: A) D)
Note: This question displayed answer options in random order when taking this Test.

A) The Product Owner.


  B) The integration architects from the release department.
  C) The external business analysts that have prepared the functional details.
D) The Development Team.
  E) The stakeholders.
  F) Only the most senior people from the Development Team.

Question 12 of 30

True or False: Programmers and testers should not be included in refining Product Backlog items.

Correct answer: B)
You chose: A)

A) True

B) False

Question 13 of 30

What is pair programming?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Two developers writing code together, providing constant peer review.

  B) Managers doing performance reviews by comparing one programmer's code to another's.

  C) A developer and a tester work together to write and test code.

  D) The Scrum Team is divided into several two-person Development Teams that consolidate
work in a Scrum of Scrums.

https://www.classmarker.com/online-test/results/ 6/14
1/18/2020 Finished.
  E) Two programmers write code separately. A third programmer integrates the work.

Question 14 of 30

Why are automated builds important?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) They are part of your "done" criteria.

  B) You are unable to check-in code without one.

C) They provide rapid assurance that defects and configuration management issues have not
been introduced.
  D) Without them you can't tell if your code works.

Feedback
Builds are just an extra level of validation to make sure that you still have a unit of potentially shippable
software. Automating builds makes that process faster.

Question 15 of 30

Which statements describe why automated builds are important?

(choose the best three answers)

Correct answer: B) C) E)
You chose: B) C) E)
Note: This question displayed answer options in random order when taking this Test.

  A) They eliminate the need for Build Engineers.


B) They allow frequent validation of the unit of software being worked on, ensuring it remains
in a potentially shippable state.
C) The build process is clearly defined and scripted, making it easy consistent and repeatable.
  D) They ensure your product remains bug free.
E) They support continuous integration.

https://www.classmarker.com/online-test/results/ 7/14
1/18/2020 Finished.

Question 16 of 30

Who is responsible for the system architecture of a product being developed using Scrum?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Development Team.

  B) The corporate architect.

  C) The architect chosen by the Development Team.

  D) The software architect.

Question 17 of 30

Product Backlog items are refined by:

(choose the best answer)

Correct answer: B)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Product Owner solely

B) The Development Team and the Product Owner

  C) The Business analyst and the Product Owner

  D) The Development Team

Question 18 of 30

Which are attributes of a good bug report?

(choose all that apply)

Correct answer: A) B) C) D) E) F)
You chose: A) B) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

https://www.classmarker.com/online-test/results/ 8/14
1/18/2020 Finished.
A) Simple and repeatable reproduction steps.
B) Expected results and observed results.
C) Clear title and proper grammar in report.
D) One bug per report.
E) Build/version where bug was found.
F) Screenshots or other pictures of bug in action when user interfaces are involved.

Question 19 of 30

While changing software, you find a bug in a previously delivered piece of functionality. What
should you do?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Revise the tests so that the bug no longer appears on the bug report.

B) Fix the bug if it is critical or easily fixed. Otherwise, put the new bug into the Product
Backlog to be prioritized and fixed in an upcoming Sprint.
  C) Stub out the code that caused the bug so it no longer occurs.

  D) Fix the bug.

Feedback
Unless your company has specific guidance on fixing bugs, they represent work to be done and should be
ordered on the Product Backlog by the PO.

Two exceptions are if the work to fix the bug is less than the work to actually log it, or if the bug is so critical
that it would be negligent to leave it unfixed.

Question 20 of 30

Which statement describes test first development?

(choose the best answer)

Correct answer: C)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

https://www.classmarker.com/online-test/results/ 9/14
1/18/2020 Finished.
  A) The continuous restructuring of software to retain flexibility.

  B) Testing existing code before adding more code to it.

C) Designing tests before satisfying them.

D) Having the tester in the Development Team write the test plans before coding.

Question 21 of 30

You are on a Scrum Team that is enhancing an existing product. Which is the LEAST useful piece
of documentation you want to have at your disposal?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The full history of retrospective plans and lessons learned.

  B) Detailed designs.

  C) Well-structured and named code.

  D) Acceptance tests.

Question 22 of 30

What is the value of refactoring code?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) To have all code in a single file for easy printing and code reviews.

  B) To make the software faster at runtime.

C) To improve readability and maintainability.

  D) To keep the code moving.

Question 23 of 30
https://www.classmarker.com/online-test/results/ 10/14
1/18/2020 Finished.

What does Code Coverage show?

(choose the best answer)

Correct answer: D)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The quality of unit tests being written

B) The ratio of number of tests to lines of code in the system being tested

  C) The absence of defects in code

D) Code being exercised by tests

  E) When a feature is done

Question 24 of 30

What are ways a Development Team can ensure a good application architecture?

(choose the best two answers)

Correct answer: D) E)
You chose: D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team plans a Sprint 0 at the beginning of a project with the objective of
developing an architecture model used during the following Sprints.
  B) The Development Team should assign someone to the role of software architect whose job
it is to make sure a consistent architecture is developed.
  C) A Development Team doesn't need an architecture model in Scrum and should focus on
adding functionality. The architecture will come into place without fail as the Development
Team adds functionality.
D) The Development Team plans some time each Sprint to discuss the architecture needed for
the features planned in that Sprint.
E) The Development Team should have a set of guiding architecture principles that every
Development Team member understands and follows when writing code.

Feedback
There is no specific "architect" role on a Scrum team, nor is there an architecture planning Sprint.  But, a good
architecture doesn't just happen automatically.  Guiding principles and frequent conversations on the team help
ensure that the most appropriate architecture is developed as it is needed by features being developed in the
current Sprint.

https://www.classmarker.com/online-test/results/ 11/14
1/18/2020 Finished.

Question 25 of 30

True or False: The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: A)

A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 26 of 30

What are reasons to automate the software build process?

(choose the best two answers)

Correct answer: A) D)
You chose: A) D)
Note: This question displayed answer options in random order when taking this Test.

A) To get feedback on changes to the code early and often.


  B) Code reviews are much faster if you automate your build.
  C) You can't run automated tests without an automated build.
D) Automation improves the quality of software by making builds less error-prone.

Question 27 of 30

True or False: Only technical writers can create documentation during a Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

https://www.classmarker.com/online-test/results/ 12/14
1/18/2020 Finished.

Question 28 of 30

What is Technical Debt?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Code that has not been commented or documented.

  B) The average time or money a Scrum Team spends per Sprint on bug fixes.

  C) The money an organization owes to tool and hardware vendors.

D) A term representing the eventual consequences of poor technical choices.

Question 29 of 30

Which is a benefit of establishing naming standards for code?

(choose the best answer)

Correct answer: B)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) To make it easy to distinguish between different software products.

B) To make the code more readable.

  C) To communicate the name of the developer that worked on the code.

  D) To ensure that "orphan functions" are not created.

Question 30 of 30

Which of the following describe an architecture spike?

(choose the best answer)

Correct answer: A)
You chose: D)

A) A small development activity to learn about technical elements of a proposed solution


https://www.classmarker.com/online-test/results/ 13/14
1/18/2020 Finished.

  B) The result of an exhaustive architectural planning effort

  C) A decision made by a systems architect to settle disagreement within a Development Team

D) A fundamental architectural problem found in an existing application

https://www.classmarker.com/online-test/results/ 14/14
1/19/2020 Finished.

Title: Developer Open

Percentage: 90%

Duration: 00:09:38

Date started: Sat 18 Jan 2020 12:07

Date finished: Sat 18 Jan 2020 12:16

Feedback
Congratulations! Your score on the Developer Open assessment demonstrates you know some Scrum developer
basics.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 27 Correct 1 Partially Correct 2 Incorrect

Question 1 of 30

What does Code Coverage show?

(choose the best answer)

Correct answer: E)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) The ratio of number of tests to lines of code in the system being tested

  B) When a feature is done

  C) The quality of unit tests being written

  D) The absence of defects in code

E) Code being exercised by tests

https://www.classmarker.com/online-test/results/ 1/14
1/19/2020 Finished.

Question 2 of 30

Which of the following are NOT metrics of code quality?

(choose all that apply)

Correct answer: B) E)
You chose: B) C)
Note: This question displayed answer options in random order when taking this Test.

  A) Class coupling
B) Code Coverage
C) Depth of inheritance
  D) Cyclomatic complexity
E) Cycle time per feature

Feedback
Note regarding Code Coverage: Code Coverage might be an indicator, but it would not be considered a
metric of Code Quality.

Question 3 of 30

What are some shortcomings of code coverage as a measurement for how well a system or
product is tested?

(choose the best three answers)

Correct answer: A) C) D)
You chose: A) C) D)
Note: This question displayed answer options in random order when taking this Test.

A) Code coverage does not necessarily provide functional coverage.


  B) Code coverage metrics vary by development platform (e.g., .NET, Java)
C) Could create incentives to write tests that simply increase code coverage, rather than tests
that find bugs without increasing coverage.
D) Code coverage does not ensure that the most important or highest risk areas of the code
are being exercised by tests.
  E) It is too complicated to explain to management.

Feedback

https://www.classmarker.com/online-test/results/ 2/14
1/19/2020 Finished.
Code coverage is a useful metric, but not in isolation. It should not be considered a replacement for effective
test design techniques.

Question 4 of 30

Who must be present at the Daily Scrum meeting?

(choose the best answer)

Correct answer: E)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) The entire Scrum Team

  B) No one is required, anyone who wishes to attend is welcome

  C) The Scrum Master and the Development Team

  D) Anyone who wants to attend

E) The Development Team

Feedback
The Daily Scrum is for the people transforming the Product Backlog items into an Increment. Only the people
that are building the product should be present at the Daily Scrum.

Question 5 of 30

Select the desirable characteristics of a unit test.

(choose the best four answers)

Correct answer: B) C) D) E)
You chose: B) C) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) They exercise the persistence layer of a solution.


B) The test executes fast.
C) Each test is independent of other unit tests.
D) Each test makes assertions about only one logical concept.
E) Code in each test is as small as possible while maintaining readability of the code.

https://www.classmarker.com/online-test/results/ 3/14
1/19/2020 Finished.

Question 6 of 30

What is pair programming?

(choose the best answer)

Correct answer: E)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Two programmers write code separately. A third programmer integrates the work.

  B) A developer and a tester work together to write and test code.

  C) The Scrum Team is divided into several two-person Development Teams that consolidate
work in a Scrum of Scrums.
  D) Managers doing performance reviews by comparing one programmer's code to another's.

E) Two developers writing code together, providing constant peer review.

Question 7 of 30

While changing software, you find a bug in a previously delivered piece of functionality. What
should you do?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Fix the bug.

  B) Revise the tests so that the bug no longer appears on the bug report.

  C) Stub out the code that caused the bug so it no longer occurs.

D) Fix the bug if it is critical or easily fixed. Otherwise, put the new bug into the Product
Backlog to be prioritized and fixed in an upcoming Sprint.

Feedback
Unless your company has specific guidance on fixing bugs, they represent work to be done and should be
ordered on the Product Backlog by the PO.

Two exceptions are if the work to fix the bug is less than the work to actually log it, or if the bug is so critical
that it would be negligent to leave it unfixed.

https://www.classmarker.com/online-test/results/ 4/14
1/19/2020 Finished.

Question 8 of 30

Which of the following are attributes of a bad bug report?

(choose the best three answers)

Correct answer: B) C) E)
You chose: B) C) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Simple and repeatable reproduction steps.


B) Vague statements or untested assumptions.
C) Generic titles.
  D) One bug per report.
E) Assigning blame.

Question 9 of 30

What is a unit test?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) A way in which units of programmers ensure their code works.

  B) A way for the team to ensure that the system satisfies the user requirements.

C) A test that isolates and verifies individual units of source code.

  D) A technique for ensuring that units of co-dependent or clustered computers perform


correctly.

Question 10 of 30

What is the value of refactoring code?

(choose the best answer)

Correct answer: A)
You chose: A)
https://www.classmarker.com/online-test/results/ 5/14
1/19/2020 Finished.
Note: This question displayed answer options in random order when taking this Test.

A) To improve readability and maintainability.

  B) To have all code in a single file for easy printing and code reviews.

  C) To keep the code moving.

  D) To make the software faster at runtime.

Question 11 of 30

True or False: Only technical writers can create documentation during a Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Question 12 of 30

Why are automated builds important?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) They are part of your "done" criteria.

  B) You are unable to check-in code without one.

C) They provide rapid assurance that defects and configuration management issues have not
been introduced.
  D) Without them you can't tell if your code works.

Feedback
Builds are just an extra level of validation to make sure that you still have a unit of potentially shippable
software. Automating builds makes that process faster.

Question 13 of 30
https://www.classmarker.com/online-test/results/ 6/14
1/19/2020 Finished.

What does a test written with Test Driven Development represent?

(choose the best answer)

Correct answer: A)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

A) A technical requirement that must be satisfied.

  B) An assignment from the lead quality engineer.

C) Something that completes the test coverage of a system.

  D) A bug that will be uncovered.

Feedback
Since the test exists before the code that makes it pass, the test acts a requirement of the system under test.

Question 14 of 30

What are three advantages of Continuous Integration?

(choose the best three answers)

Correct answer: A) B) D)
You chose: A) B) D)
Note: This question displayed answer options in random order when taking this Test.

A) Broken builds are detected quickly.


B) Know immediately how a check-in affected the build.
  C) Readability of code is improved.
D) The software is generally kept in a buildable state.

Question 15 of 30

What is code coverage?

(choose the best answer)

Correct answer: C)
You chose: C)

https://www.classmarker.com/online-test/results/ 7/14
1/19/2020 Finished.
Note: This question displayed answer options in random order when taking this Test.

  A) An insurance policy that covers the code for defects.

  B) The number of developers that understand how the code works.

C) The degree to which the system under test has been exercised by tests.

  D) The percent of code in version control included in a build.

Question 16 of 30

When are testers and quality experts ideally included in a project?

(choose the best answer)

Correct answer: A)
You chose: A)

A) From the beginning and throughout all Sprints.

  B) After Sprint Review.

  C) When the product is feature complete.

  D) After developer handoff.

Question 17 of 30

What is NOT Test-Driven Development?

(choose the best answer)

Correct answer: D)
You chose: D)

  A) A software development technique based on automated tests.

  B) An incremental and emergent approach to software design.

  C) A predictable way to develop working, clean code.

D) Testing existing software before developing any new software.

Question 18 of 30

https://www.classmarker.com/online-test/results/ 8/14
1/19/2020 Finished.

When does the Development Team participate in Product Backlog refinement?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) As Part 1 of the Sprint Planning meeting.

  B) Never. It is the sole responsibility of the Product Owner to refine the Product Backlog.

C) Anytime during the Sprint.

  D) Only during refinement meetings planned by the Product Owner.

Question 19 of 30

Which types of tests can be automated?

(choose all that apply)

Correct answer: A) B) C) D) E)
You chose: A) B) C) D) E)
Note: This question displayed answer options in random order when taking this Test.

A) Performance
B) Smoke
C) Unit
D) Integration
E) Functional
  F) Exploratory

Question 20 of 30

Which statement describes how often the build should be executed?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Whenever new or changed code is checked into version control.

https://www.classmarker.com/online-test/results/ 9/14
1/19/2020 Finished.
  B) Once per day.

  C) Whenever the Quality Assurance group becomes uncertain that the system works.

  D) As often as possible, and certainly prior to the end of the Sprint.

Question 21 of 30

When a Continuous Integration build fails, who ideally ensures the build is repaired?

(choose the best answer)

Correct answer: A)
You chose: A)

A) The person who broke the build

  B) The person assigned to the configuration management role within the team

  C) The tester responsible for validating builds

  D) The next person who needs the build to complete successfully

Question 22 of 30

When is a system's architecture decided?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) In the beginning of the project, during Sprint 0.

  B) It is designed along with the vision, before the first Sprint.

C) Throughout the project, as understanding emerges and the Development Team learns more
about the project.
  D) Whenever the assigned architect can join the Development Team.

Question 23 of 30

https://www.classmarker.com/online-test/results/ 10/14
1/19/2020 Finished.

What are reasons to automate the software build process?

(choose the best two answers)

Correct answer: A) C)
You chose: A) C)
Note: This question displayed answer options in random order when taking this Test.

A) Automation improves the quality of software by making builds less error-prone.


  B) You can't run automated tests without an automated build.
C) To get feedback on changes to the code early and often.
  D) Code reviews are much faster if you automate your build.

Question 24 of 30

Which of the following best describes Continuous Integration?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) A software development practice where members of a development team integrate and


verify their work frequently, often multiple times each day, to detect integration errors as
quickly as possible.
  B) A software development practice used by Integration Teams to create best practice
branching and merging strategies.
  C) A software development practice where members of a development team all work on the
same computer to ensure a common code base.
  D) A software development practice that continuously integrates feedback from users into
software design.

Question 25 of 30

What are ways a Development Team can ensure a good application architecture?

(choose the best two answers)

Correct answer: C) D)
You chose: C) D)
Note: This question displayed answer options in random order when taking this Test.
https://www.classmarker.com/online-test/results/ 11/14
1/19/2020 Finished.
  A) The Development Team should assign someone to the role of software architect whose job
it is to make sure a consistent architecture is developed.
  B) The Development Team plans a Sprint 0 at the beginning of a project with the objective of
developing an architecture model used during the following Sprints.
C) The Development Team should have a set of guiding architecture principles that every
Development Team member understands and follows when writing code.
D) The Development Team plans some time each Sprint to discuss the architecture needed for
the features planned in that Sprint.
  E) A Development Team doesn't need an architecture model in Scrum and should focus on
adding functionality. The architecture will come into place without fail as the Development
Team adds functionality.

Feedback
There is no specific "architect" role on a Scrum team, nor is there an architecture planning Sprint.  But, a good
architecture doesn't just happen automatically.  Guiding principles and frequent conversations on the team help
ensure that the most appropriate architecture is developed as it is needed by features being developed in the
current Sprint.

Question 26 of 30

True or False: The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 27 of 30

Which statements describe why automated builds are important?

(choose the best three answers)

Correct answer: C) D) E)
You chose: C) D) E)
Note: This question displayed answer options in random order when taking this Test.
https://www.classmarker.com/online-test/results/ 12/14
1/19/2020 Finished.
  A) They eliminate the need for Build Engineers.
  B) They ensure your product remains bug free.
C) The build process is clearly defined and scripted, making it easy consistent and repeatable.
D) They support continuous integration.
E) They allow frequent validation of the unit of software being worked on, ensuring it remains
in a potentially shippable state.

Question 28 of 30

Which describes the practice of expressing requirements as acceptance tests?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Quality Oriented Requirements Definition.

  B) Object Driven Requirements Definition.

  C) Regression Testing

D) Acceptance Test Driven Development

Feedback
Advanced practices of test-driven development can lead to Acceptance Test-driven development (ATDD) where
the criteria specified by the customer are automated into acceptance tests, which then drive the traditional unit
test-driven development (UTDD) process.

Question 29 of 30

You are on a Scrum Team that is enhancing an existing product. Which is the LEAST useful piece
of documentation you want to have at your disposal?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Well-structured and named code.

  B) Acceptance tests.

https://www.classmarker.com/online-test/results/ 13/14
1/19/2020 Finished.
  C) Detailed designs.

D) The full history of retrospective plans and lessons learned.

Question 30 of 30

Which are attributes of a good bug report?

(choose all that apply)

Correct answer: A) B) C) D) E) F)
You chose: A) B) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

A) One bug per report.


B) Build/version where bug was found.
C) Clear title and proper grammar in report.
D) Screenshots or other pictures of bug in action when user interfaces are involved.
E) Simple and repeatable reproduction steps.
F) Expected results and observed results.

https://www.classmarker.com/online-test/results/ 14/14
1/19/2020 Finished.

Title: Developer Open

Percentage: 90%

Duration: 00:09:54

Date started: Sun 19 Jan 2020 10:47

Date finished: Sun 19 Jan 2020 10:57

Feedback
Congratulations! Your score on the Developer Open assessment demonstrates you know some Scrum developer
basics.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 27 Correct 1 Partially Correct 2 Incorrect

Question 1 of 30

Which of the following best describes Continuous Integration?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) A software development practice where members of a development team integrate and


verify their work frequently, often multiple times each day, to detect integration errors as
quickly as possible.
  B) A software development practice used by Integration Teams to create best practice
branching and merging strategies.
  C) A software development practice where members of a development team all work on the
same computer to ensure a common code base.

https://www.classmarker.com/online-test/results/ 1/14
1/19/2020 Finished.
  D) A software development practice that continuously integrates feedback from users into
software design.

Question 2 of 30

What is pair programming?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Two developers writing code together, providing constant peer review.

  B) Managers doing performance reviews by comparing one programmer's code to another's.

  C) A developer and a tester work together to write and test code.

  D) The Scrum Team is divided into several two-person Development Teams that consolidate
work in a Scrum of Scrums.
  E) Two programmers write code separately. A third programmer integrates the work.

Question 3 of 30

What happens during Sprint 0?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Overall planning, base system architecture, base design, version control and continuous
integration setup.
B) There is no such thing as Sprint 0.

  C) Establish base system architecture and design, install version control and continuous
integration setup.
  D) Requirements gathering, version control setup, and continuous integration setup.

  E) Base system architecture and design.

Feedback
https://www.classmarker.com/online-test/results/ 2/14
1/19/2020 Finished.
Scrum does not include the concept of a Sprint 0. "Sprint 0" has become a phrase misused to describe the
planning that occurs prior to the first sprint.

Question 4 of 30

Select the desirable characteristics of a unit test.

(choose the best four answers)

Correct answer: B) C) D) E)
You chose: B) C) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) They exercise the persistence layer of a solution.


B) The test executes fast.
C) Each test is independent of other unit tests.
D) Each test makes assertions about only one logical concept.
E) Code in each test is as small as possible while maintaining readability of the code.

Question 5 of 30

While changing software, you find a bug in a previously delivered piece of functionality. What
should you do?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Revise the tests so that the bug no longer appears on the bug report.

B) Fix the bug if it is critical or easily fixed. Otherwise, put the new bug into the Product
Backlog to be prioritized and fixed in an upcoming Sprint.
  C) Fix the bug.

  D) Stub out the code that caused the bug so it no longer occurs.

Feedback
Unless your company has specific guidance on fixing bugs, they represent work to be done and should be
ordered on the Product Backlog by the PO.

https://www.classmarker.com/online-test/results/ 3/14
1/19/2020 Finished.
Two exceptions are if the work to fix the bug is less than the work to actually log it, or if the bug is so critical
that it would be negligent to leave it unfixed.

Question 6 of 30

Which statements describe why automated builds are important?

(choose the best three answers)

Correct answer: C) D) E)
You chose: C) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) They eliminate the need for Build Engineers.


  B) They ensure your product remains bug free.
C) The build process is clearly defined and scripted, making it easy consistent and repeatable.
D) They support continuous integration.
E) They allow frequent validation of the unit of software being worked on, ensuring it remains
in a potentially shippable state.

Question 7 of 30

True or False: The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 8 of 30

Why are automated builds important?

(choose the best answer)


https://www.classmarker.com/online-test/results/ 4/14
1/19/2020 Finished.

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Without them you can't tell if your code works.

  B) They are part of your "done" criteria.

C) They provide rapid assurance that defects and configuration management issues have not
been introduced.
  D) You are unable to check-in code without one.

Feedback
Builds are just an extra level of validation to make sure that you still have a unit of potentially shippable
software. Automating builds makes that process faster.

Question 9 of 30

Which of the following are NOT metrics of code quality?

(choose all that apply)

Correct answer: B) E)
You chose: B) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Depth of inheritance
B) Cycle time per feature
  C) Class coupling
  D) Cyclomatic complexity
E) Code Coverage

Question 10 of 30

What is Technical Debt?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The average time or money a Scrum Team spends per Sprint on bug fixes.
https://www.classmarker.com/online-test/results/ 5/14
1/19/2020 Finished.

B) A term representing the eventual consequences of poor technical choices.

  C) Code that has not been commented or documented.

  D) The money an organization owes to tool and hardware vendors.

Question 11 of 30

Which statement describes test first development?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Testing existing code before adding more code to it.

  B) Having the tester in the Development Team write the test plans before coding.

  C) The continuous restructuring of software to retain flexibility.

D) Designing tests before satisfying them.

Question 12 of 30

Which are attributes of a good bug report?

(choose all that apply)

Correct answer: A) B) C) D) E) F)
You chose: A) B) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

A) One bug per report.


B) Screenshots or other pictures of bug in action when user interfaces are involved.
C) Expected results and observed results.
D) Simple and repeatable reproduction steps.
E) Clear title and proper grammar in report.
F) Build/version where bug was found.

Question 13 of 30
https://www.classmarker.com/online-test/results/ 6/14
1/19/2020 Finished.

Which statement describes how often the build should be executed?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Once per day.

  B) As often as possible, and certainly prior to the end of the Sprint.

C) Whenever new or changed code is checked into version control.

  D) Whenever the Quality Assurance group becomes uncertain that the system works.

Question 14 of 30

Who should be present during Product Backlog refinement?

(choose all that apply)

Correct answer: A) D)
You chose: A) D)
Note: This question displayed answer options in random order when taking this Test.

A) The Product Owner.


  B) The stakeholders.
  C) Only the most senior people from the Development Team.
D) The Development Team.
  E) The integration architects from the release department.
  F) The external business analysts that have prepared the functional details.

Question 15 of 30

True or False: Only technical writers can create documentation during a Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False
https://www.classmarker.com/online-test/results/ 7/14
1/19/2020 Finished.

Question 16 of 30

To refine Product Backlog items, the following activities will occur implicitly or explicitly:

(choose all that apply)

Correct answer: A) B) E)
You chose: A) C) E)
Note: This question displayed answer options in random order when taking this Test.

A) Design
B) Decomposition
C) Testing
  D) Programming
E) Analysis

Question 17 of 30

Which is a benefit of establishing naming standards for code?

(choose the best answer)

Correct answer: C)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) To make it easy to distinguish between different software products.

  B) To ensure that "orphan functions" are not created.

C) To make the code more readable.

  D) To communicate the name of the developer that worked on the code.

Question 18 of 30

Who writes tests in a Scrum Team?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 8/14
1/19/2020 Finished.
Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Quality Assurance Specialists

B) The Development Team

  C) The Scrum Master

  D) Coders

Question 19 of 30

Product Backlog items are refined by:

(choose the best answer)

Correct answer: C)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The Business analyst and the Product Owner

  B) The Development Team

C) The Development Team and the Product Owner

D) The Product Owner solely

Question 20 of 30

When a Continuous Integration build fails, who ideally ensures the build is repaired?

(choose the best answer)

Correct answer: A)
You chose: A)

A) The person who broke the build

  B) The person assigned to the configuration management role within the team

  C) The tester responsible for validating builds

  D) The next person who needs the build to complete successfully

https://www.classmarker.com/online-test/results/ 9/14
1/19/2020 Finished.

Question 21 of 30

Who is responsible for the system architecture of a product being developed using Scrum?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The corporate architect.

  B) The architect chosen by the Development Team.

  C) The software architect.

D) The Development Team.

Question 22 of 30

What does Code Coverage show?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The quality of unit tests being written

  B) The ratio of number of tests to lines of code in the system being tested

  C) The absence of defects in code

D) Code being exercised by tests

  E) When a feature is done

Question 23 of 30

When are testers and quality experts ideally included in a project?

(choose the best answer)

Correct answer: A)
You chose: A)

https://www.classmarker.com/online-test/results/ 10/14
1/19/2020 Finished.
A) From the beginning and throughout all Sprints.

  B) After Sprint Review.

  C) When the product is feature complete.

  D) After developer handoff.

Question 24 of 30

Which of the following are benefits of Continuous Integration?

(choose the best two answers)

Correct answer: A) C)
You chose: A) C)
Note: This question displayed answer options in random order when taking this Test.

A) It leads to higher transparency and rapid feedback to the team.


  B) It eliminates bugs completely.
C) Causes team members to consider each other's work and context.
  D) The build is executed once every night and at least once each weekend.

Question 25 of 30

What are some shortcomings of code coverage as a measurement for how well a system or
product is tested?

(choose the best three answers)

Correct answer: B) C) E)
You chose: B) C) E)
Note: This question displayed answer options in random order when taking this Test.

  A) It is too complicated to explain to management.


B) Could create incentives to write tests that simply increase code coverage, rather than tests
that find bugs without increasing coverage.
C) Code coverage does not ensure that the most important or highest risk areas of the code
are being exercised by tests.
  D) Code coverage metrics vary by development platform (e.g., .NET, Java)
E) Code coverage does not necessarily provide functional coverage.

https://www.classmarker.com/online-test/results/ 11/14
1/19/2020 Finished.

Feedback
Code coverage is a useful metric, but not in isolation. It should not be considered a replacement for effective
test design techniques.

Question 26 of 30

What does a test written with Test Driven Development represent?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) An assignment from the lead quality engineer.

  B) Something that completes the test coverage of a system.

C) A technical requirement that must be satisfied.

  D) A bug that will be uncovered.

Feedback
Since the test exists before the code that makes it pass, the test acts a requirement of the system under test.

Question 27 of 30

What are three advantages of Continuous Integration?

(choose the best three answers)

Correct answer: A) B) C)
You chose: A) B) C)
Note: This question displayed answer options in random order when taking this Test.

A) The software is generally kept in a buildable state.


B) Know immediately how a check-in affected the build.
C) Broken builds are detected quickly.
  D) Readability of code is improved.

Question 28 of 30

https://www.classmarker.com/online-test/results/ 12/14
1/19/2020 Finished.

The definition of "Done" describes the work that must be completed for every Product Backlog
item before it can be deemed releasable. What should the Development Team do when, during the
Sprint, it finds out that a problem outside of their control blocks them from doing all this work?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Complete the work that can be done on as much scope as possible and complete the rest
during the "hardening" sprints at the end of the release.
B) Immediately raise the issue to the Scrum Master as an impediment.

  C) Complete the work that can be done on as much scope as possible and use the Sprint
Review to plan the rest with the stakeholders.
  D) Stop using Scrum.

  E) Cancel the Sprint.

Question 29 of 30

Should User Stories be part of the documentation generated by a Scrum project?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Always.

  B) They must be provided to the Development Team as part of the user specifications
documents.
C) If they are part of the Definition of "done".

  D) Never.

  E) If the architect requires it.

Question 30 of 30

True or False: Programmers and testers should not be included in refining Product Backlog items.

https://www.classmarker.com/online-test/results/ 13/14
1/19/2020 Finished.
Correct answer: B)
You chose: B)

  A) True

B) False

https://www.classmarker.com/online-test/results/ 14/14
1/20/2020 Finished.

Title: Developer Open

Percentage: 86.7%

Duration: 00:12:14

Date started: Sun 19 Jan 2020 23:20

Date finished: Sun 19 Jan 2020 23:32

Feedback
Congratulations! Your score on the Developer Open assessment demonstrates you know some Scrum developer
basics.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 26 Correct 1 Partially Correct 3 Incorrect

Question 1 of 30

Why are automated builds important?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) You are unable to check-in code without one.

B) They provide rapid assurance that defects and configuration management issues have not
been introduced.
  C) Without them you can't tell if your code works.

  D) They are part of your "done" criteria.

https://www.classmarker.com/online-test/results/ 1/14
1/20/2020 Finished.

Feedback
Builds are just an extra level of validation to make sure that you still have a unit of potentially shippable
software. Automating builds makes that process faster.

Question 2 of 30

Who is responsible for the system architecture of a product being developed using Scrum?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The corporate architect.

  B) The architect chosen by the Development Team.

  C) The software architect.

D) The Development Team.

Question 3 of 30

What does Code Coverage show?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The quality of unit tests being written

  B) The ratio of number of tests to lines of code in the system being tested

  C) The absence of defects in code

D) Code being exercised by tests

  E) When a feature is done

Question 4 of 30

https://www.classmarker.com/online-test/results/ 2/14
1/20/2020 Finished.

What is pair programming?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Scrum Team is divided into several two-person Development Teams that consolidate
work in a Scrum of Scrums.
  B) Managers doing performance reviews by comparing one programmer's code to another's.

C) Two developers writing code together, providing constant peer review.

  D) Two programmers write code separately. A third programmer integrates the work.

  E) A developer and a tester work together to write and test code.

Question 5 of 30

True or False: Only technical writers can create documentation during a Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Question 6 of 30

What is code coverage?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The degree to which the system under test has been exercised by tests.

  B) The number of developers that understand how the code works.

  C) An insurance policy that covers the code for defects.

  D) The percent of code in version control included in a build.

https://www.classmarker.com/online-test/results/ 3/14
1/20/2020 Finished.

Question 7 of 30

Which describes the practice of expressing requirements as acceptance tests?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Object Driven Requirements Definition.

  B) Quality Oriented Requirements Definition.

C) Acceptance Test Driven Development

  D) Regression Testing

Feedback
Advanced practices of test-driven development can lead to Acceptance Test-driven development (ATDD) where
the criteria specified by the customer are automated into acceptance tests, which then drive the traditional unit
test-driven development (UTDD) process.

Question 8 of 30

Which is a benefit of establishing naming standards for code?

(choose the best answer)

Correct answer: C)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) To make it easy to distinguish between different software products.

  B) To ensure that "orphan functions" are not created.

C) To make the code more readable.

D) To communicate the name of the developer that worked on the code.

Question 9 of 30

Product Backlog items are refined by:

https://www.classmarker.com/online-test/results/ 4/14
1/20/2020 Finished.

(choose the best answer)

Correct answer: A)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

A) The Development Team and the Product Owner

  B) The Development Team

  C) The Business analyst and the Product Owner

D) The Product Owner solely

Question 10 of 30

What is the value of refactoring code?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) To improve readability and maintainability.

  B) To have all code in a single file for easy printing and code reviews.

  C) To keep the code moving.

  D) To make the software faster at runtime.

Question 11 of 30

Which are attributes of a good bug report?

(choose all that apply)

Correct answer: A) B) C) D) E) F)
You chose: A) B) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

A) Expected results and observed results.


B) Build/version where bug was found.
C) One bug per report.
D) Simple and repeatable reproduction steps.

https://www.classmarker.com/online-test/results/ 5/14
1/20/2020 Finished.
E) Screenshots or other pictures of bug in action when user interfaces are involved.
F) Clear title and proper grammar in report.

Question 12 of 30

Which of the following describe an architecture spike?

(choose the best answer)

Correct answer: A)
You chose: D)

A) A small development activity to learn about technical elements of a proposed solution

  B) The result of an exhaustive architectural planning effort

  C) A decision made by a systems architect to settle disagreement within a Development Team

D) A fundamental architectural problem found in an existing application

Question 13 of 30

What are ways a Development Team can ensure a good application architecture?

(choose the best two answers)

Correct answer: C) E)
You chose: C) E)
Note: This question displayed answer options in random order when taking this Test.

  A) A Development Team doesn't need an architecture model in Scrum and should focus on
adding functionality. The architecture will come into place without fail as the Development
Team adds functionality.
  B) The Development Team should assign someone to the role of software architect whose job
it is to make sure a consistent architecture is developed.
C) The Development Team should have a set of guiding architecture principles that every
Development Team member understands and follows when writing code.
  D) The Development Team plans a Sprint 0 at the beginning of a project with the objective of
developing an architecture model used during the following Sprints.
E) The Development Team plans some time each Sprint to discuss the architecture needed for
the features planned in that Sprint.

Feedback

https://www.classmarker.com/online-test/results/ 6/14
1/20/2020 Finished.
There is no specific "architect" role on a Scrum team, nor is there an architecture planning Sprint.  But, a good
architecture doesn't just happen automatically.  Guiding principles and frequent conversations on the team help
ensure that the most appropriate architecture is developed as it is needed by features being developed in the
current Sprint.

Question 14 of 30

Who writes tests in a Scrum Team?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Development Team

  B) Coders

  C) The Scrum Master

  D) Quality Assurance Specialists

Question 15 of 30

You are on a Scrum Team that is enhancing an existing product. Which is the LEAST useful piece
of documentation you want to have at your disposal?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The full history of retrospective plans and lessons learned.

  B) Acceptance tests.

  C) Well-structured and named code.

  D) Detailed designs.

Question 16 of 30

https://www.classmarker.com/online-test/results/ 7/14
1/20/2020 Finished.

While changing software, you find a bug in a previously delivered piece of functionality. What
should you do?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Revise the tests so that the bug no longer appears on the bug report.

B) Fix the bug if it is critical or easily fixed. Otherwise, put the new bug into the Product
Backlog to be prioritized and fixed in an upcoming Sprint.
  C) Fix the bug.

  D) Stub out the code that caused the bug so it no longer occurs.

Feedback
Unless your company has specific guidance on fixing bugs, they represent work to be done and should be
ordered on the Product Backlog by the PO.

Two exceptions are if the work to fix the bug is less than the work to actually log it, or if the bug is so critical
that it would be negligent to leave it unfixed.

Question 17 of 30

Which statement describes how often the build should be executed?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) As often as possible, and certainly prior to the end of the Sprint.

  B) Whenever the Quality Assurance group becomes uncertain that the system works.

C) Whenever new or changed code is checked into version control.

  D) Once per day.

Question 18 of 30

What happens during Sprint 0?

https://www.classmarker.com/online-test/results/ 8/14
1/20/2020 Finished.

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Base system architecture and design.

B) There is no such thing as Sprint 0.

  C) Overall planning, base system architecture, base design, version control and continuous
integration setup.
  D) Establish base system architecture and design, install version control and continuous
integration setup.
  E) Requirements gathering, version control setup, and continuous integration setup.

Feedback
Scrum does not include the concept of a Sprint 0. "Sprint 0" has become a phrase misused to describe the
planning that occurs prior to the first sprint.

Question 19 of 30

The definition of "Done" describes the work that must be completed for every Product Backlog
item before it can be deemed releasable. What should the Development Team do when, during the
Sprint, it finds out that a problem outside of their control blocks them from doing all this work?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Complete the work that can be done on as much scope as possible and complete the rest
during the "hardening" sprints at the end of the release.
B) Immediately raise the issue to the Scrum Master as an impediment.

  C) Complete the work that can be done on as much scope as possible and use the Sprint
Review to plan the rest with the stakeholders.
  D) Stop using Scrum.

  E) Cancel the Sprint.

Question 20 of 30

https://www.classmarker.com/online-test/results/ 9/14
1/20/2020 Finished.

What is NOT Test-Driven Development?

(choose the best answer)

Correct answer: D)
You chose: D)

  A) A software development technique based on automated tests.

  B) An incremental and emergent approach to software design.

  C) A predictable way to develop working, clean code.

D) Testing existing software before developing any new software.

Question 21 of 30

When does the Development Team participate in Product Backlog refinement?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Never. It is the sole responsibility of the Product Owner to refine the Product Backlog.

  B) Only during refinement meetings planned by the Product Owner.

  C) As Part 1 of the Sprint Planning meeting.

D) Anytime during the Sprint.

Question 22 of 30

Who should be present during Product Backlog refinement?

(choose all that apply)

Correct answer: B) E)
You chose: B) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Only the most senior people from the Development Team.


B) The Product Owner.
  C) The stakeholders.

https://www.classmarker.com/online-test/results/ 10/14
1/20/2020 Finished.
  D) The external business analysts that have prepared the functional details.
E) The Development Team.
  F) The integration architects from the release department.

Question 23 of 30

What are reasons to automate the software build process?

(choose the best two answers)

Correct answer: A) C)
You chose: A) C)
Note: This question displayed answer options in random order when taking this Test.

A) Automation improves the quality of software by making builds less error-prone.


  B) You can't run automated tests without an automated build.
C) To get feedback on changes to the code early and often.
  D) Code reviews are much faster if you automate your build.

Question 24 of 30

What does a test written with Test Driven Development represent?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) A bug that will be uncovered.

  B) An assignment from the lead quality engineer.

C) A technical requirement that must be satisfied.

  D) Something that completes the test coverage of a system.

Feedback
Since the test exists before the code that makes it pass, the test acts a requirement of the system under test.

Question 25 of 30
https://www.classmarker.com/online-test/results/ 11/14
1/20/2020 Finished.

To refine Product Backlog items, the following activities will occur implicitly or explicitly:

(choose all that apply)

Correct answer: A) B) D)
You chose: A) B) D)
Note: This question displayed answer options in random order when taking this Test.

A) Design
B) Analysis
  C) Testing
D) Decomposition
  E) Programming

Question 26 of 30

Which are potential benefits of Test Driven Development?

(choose all that apply).

Correct answer: A) B) C) D)
You chose: A) C) D)
Note: This question displayed answer options in random order when taking this Test.

A) It causes you to construct a test harness that can be automated.


B) It promotes good design and separation of concerns.
C) It speeds the overall development process.
D) It improves quality and reduces bugs.

Question 27 of 30

What are some shortcomings of code coverage as a measurement for how well a system or
product is tested?

(choose the best three answers)

Correct answer: C) D) E)
You chose: C) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Code coverage metrics vary by development platform (e.g., .NET, Java)


https://www.classmarker.com/online-test/results/ 12/14
1/20/2020 Finished.

  B) It is too complicated to explain to management.


C) Could create incentives to write tests that simply increase code coverage, rather than tests
that find bugs without increasing coverage.
D) Code coverage does not necessarily provide functional coverage.
E) Code coverage does not ensure that the most important or highest risk areas of the code
are being exercised by tests.

Feedback
Code coverage is a useful metric, but not in isolation. It should not be considered a replacement for effective
test design techniques.

Question 28 of 30

What relationship does Scrum have to technical practices?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Scrum requires specific technical practices or it isn't Scrum.

  B) All technical practices must be used to support Scrum.

  C) None.

D) Scrum Development Teams with excellent technical practices will likely be more successful.

Feedback
While technical practices aren't specifically included as a part of Scrum, the rapid pace of development using
Scrum often requires that good technical practices are utilized by Development Teams in order to be
successful.

Question 29 of 30

What is Technical Debt?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

https://www.classmarker.com/online-test/results/ 13/14
1/20/2020 Finished.
  A) Code that has not been commented or documented.

  B) The money an organization owes to tool and hardware vendors.

C) A term representing the eventual consequences of poor technical choices.

  D) The average time or money a Scrum Team spends per Sprint on bug fixes.

Question 30 of 30

When are testers and quality experts ideally included in a project?

(choose the best answer)

Correct answer: A)
You chose: A)

A) From the beginning and throughout all Sprints.

  B) After Sprint Review.

  C) When the product is feature complete.

  D) After developer handoff.

https://www.classmarker.com/online-test/results/ 14/14
1/20/2020 Finished.

Title: Developer Open

Percentage: 100%

Duration: 00:08:31

Date started: Mon 20 Jan 2020 04:38

Date finished: Mon 20 Jan 2020 04:46

Feedback
Congratulations! Your score on the Developer Open assessment demonstrates you know some Scrum developer
basics.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 30 Correct 0 Incorrect

Question 1 of 30

Which of the following best describes Continuous Integration?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) A software development practice that continuously integrates feedback from users into
software design.
  B) A software development practice used by Integration Teams to create best practice
branching and merging strategies.
C) A software development practice where members of a development team integrate and
verify their work frequently, often multiple times each day, to detect integration errors as
quickly as possible.

https://www.classmarker.com/online-test/results/ 1/14
1/20/2020 Finished.
  D) A software development practice where members of a development team all work on the
same computer to ensure a common code base.

Question 2 of 30

To refine Product Backlog items, the following activities will occur implicitly or explicitly:

(choose all that apply)

Correct answer: B) D) E)
You chose: B) D) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Testing
B) Analysis
  C) Programming
D) Decomposition
E) Design

Question 3 of 30

Why are automated builds important?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) They provide rapid assurance that defects and configuration management issues have not
been introduced.
  B) They are part of your "done" criteria.

  C) Without them you can't tell if your code works.

  D) You are unable to check-in code without one.

Feedback
Builds are just an extra level of validation to make sure that you still have a unit of potentially shippable
software. Automating builds makes that process faster.

https://www.classmarker.com/online-test/results/ 2/14
1/20/2020 Finished.

Question 4 of 30

Which statement describes test first development?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Having the tester in the Development Team write the test plans before coding.

  B) The continuous restructuring of software to retain flexibility.

C) Designing tests before satisfying them.

  D) Testing existing code before adding more code to it.

Question 5 of 30

Should User Stories be part of the documentation generated by a Scrum project?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) If they are part of the Definition of "done".

  B) If the architect requires it.

  C) Always.

  D) Never.

  E) They must be provided to the Development Team as part of the user specifications
documents.

Question 6 of 30

What is a unit test?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 3/14
1/20/2020 Finished.
Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) A test that isolates and verifies individual units of source code.

  B) A technique for ensuring that units of co-dependent or clustered computers perform


correctly.
  C) A way in which units of programmers ensure their code works.

  D) A way for the team to ensure that the system satisfies the user requirements.

Question 7 of 30

Select the desirable characteristics of a unit test.

(choose the best four answers)

Correct answer: A) C) D) E)
You chose: A) C) D) E)
Note: This question displayed answer options in random order when taking this Test.

A) The test executes fast.


  B) They exercise the persistence layer of a solution.
C) Code in each test is as small as possible while maintaining readability of the code.
D) Each test makes assertions about only one logical concept.
E) Each test is independent of other unit tests.

Question 8 of 30

What relationship does Scrum have to technical practices?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) All technical practices must be used to support Scrum.

  B) None.

  C) Scrum requires specific technical practices or it isn't Scrum.

D) Scrum Development Teams with excellent technical practices will likely be more successful.

https://www.classmarker.com/online-test/results/ 4/14
1/20/2020 Finished.

Feedback
While technical practices aren't specifically included as a part of Scrum, the rapid pace of development using
Scrum often requires that good technical practices are utilized by Development Teams in order to be
successful.

Question 9 of 30

What is the value of refactoring code?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) To keep the code moving.

  B) To have all code in a single file for easy printing and code reviews.

  C) To make the software faster at runtime.

D) To improve readability and maintainability.

Question 10 of 30

Which are potential benefits of Test Driven Development?

(choose all that apply).

Correct answer: A) B) C) D)
You chose: A) B) C) D)
Note: This question displayed answer options in random order when taking this Test.

A) It speeds the overall development process.


B) It causes you to construct a test harness that can be automated.
C) It improves quality and reduces bugs.
D) It promotes good design and separation of concerns.

Question 11 of 30

https://www.classmarker.com/online-test/results/ 5/14
1/20/2020 Finished.

What does Code Coverage show?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The absence of defects in code

  B) The ratio of number of tests to lines of code in the system being tested

C) Code being exercised by tests

  D) The quality of unit tests being written

  E) When a feature is done

Question 12 of 30

While changing software, you find a bug in a previously delivered piece of functionality. What
should you do?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Revise the tests so that the bug no longer appears on the bug report.

B) Fix the bug if it is critical or easily fixed. Otherwise, put the new bug into the Product
Backlog to be prioritized and fixed in an upcoming Sprint.
  C) Stub out the code that caused the bug so it no longer occurs.

  D) Fix the bug.

Feedback
Unless your company has specific guidance on fixing bugs, they represent work to be done and should be
ordered on the Product Backlog by the PO.

Two exceptions are if the work to fix the bug is less than the work to actually log it, or if the bug is so critical
that it would be negligent to leave it unfixed.

Question 13 of 30

https://www.classmarker.com/online-test/results/ 6/14
1/20/2020 Finished.

Product Backlog items are refined by:

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Business analyst and the Product Owner

  B) The Development Team

C) The Development Team and the Product Owner

  D) The Product Owner solely

Question 14 of 30

What is Technical Debt?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The average time or money a Scrum Team spends per Sprint on bug fixes.

B) A term representing the eventual consequences of poor technical choices.

  C) Code that has not been commented or documented.

  D) The money an organization owes to tool and hardware vendors.

Question 15 of 30

Which types of tests can be automated?

(choose all that apply)

Correct answer: A) C) D) E) F)
You chose: A) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

A) Unit
  B) Exploratory
C) Performance
https://www.classmarker.com/online-test/results/ 7/14
1/20/2020 Finished.

D) Integration
E) Smoke
F) Functional

Question 16 of 30

Who writes tests in a Scrum Team?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The Scrum Master

  B) Coders

  C) Quality Assurance Specialists

D) The Development Team

Question 17 of 30

Who must be present at the Daily Scrum meeting?

(choose the best answer)

Correct answer: E)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) The entire Scrum Team

  B) No one is required, anyone who wishes to attend is welcome

  C) The Scrum Master and the Development Team

  D) Anyone who wants to attend

E) The Development Team

Feedback
The Daily Scrum is for the people transforming the Product Backlog items into an Increment. Only the people
that are building the product should be present at the Daily Scrum.
https://www.classmarker.com/online-test/results/ 8/14
1/20/2020 Finished.

Question 18 of 30

Which of the following are benefits of Continuous Integration?

(choose the best two answers)

Correct answer: A) C)
You chose: A) C)
Note: This question displayed answer options in random order when taking this Test.

A) It leads to higher transparency and rapid feedback to the team.


  B) It eliminates bugs completely.
C) Causes team members to consider each other's work and context.
  D) The build is executed once every night and at least once each weekend.

Question 19 of 30

Which of the following describe an architecture spike?

(choose the best answer)

Correct answer: A)
You chose: A)

A) A small development activity to learn about technical elements of a proposed solution

  B) The result of an exhaustive architectural planning effort

  C) A decision made by a systems architect to settle disagreement within a Development Team

  D) A fundamental architectural problem found in an existing application

Question 20 of 30

What is pair programming?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

https://www.classmarker.com/online-test/results/ 9/14
1/20/2020 Finished.
  A) Managers doing performance reviews by comparing one programmer's code to another's.

  B) Two programmers write code separately. A third programmer integrates the work.

  C) A developer and a tester work together to write and test code.

D) Two developers writing code together, providing constant peer review.

  E) The Scrum Team is divided into several two-person Development Teams that consolidate
work in a Scrum of Scrums.

Question 21 of 30

True or False: Programmers and testers should not be included in refining Product Backlog items.

Correct answer: B)
You chose: B)

  A) True

B) False

Question 22 of 30

When are testers and quality experts ideally included in a project?

(choose the best answer)

Correct answer: A)
You chose: A)

A) From the beginning and throughout all Sprints.

  B) After Sprint Review.

  C) When the product is feature complete.

  D) After developer handoff.

Question 23 of 30

What is code coverage?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 10/14
1/20/2020 Finished.
Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The percent of code in version control included in a build.

  B) The number of developers that understand how the code works.

C) The degree to which the system under test has been exercised by tests.

  D) An insurance policy that covers the code for defects.

Question 24 of 30

True or False: Only technical writers can create documentation during a Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Question 25 of 30

Which are attributes of a good bug report?

(choose all that apply)

Correct answer: A) B) C) D) E) F)
You chose: A) B) C) D) E) F)
Note: This question displayed answer options in random order when taking this Test.

A) Clear title and proper grammar in report.


B) Expected results and observed results.
C) Screenshots or other pictures of bug in action when user interfaces are involved.
D) One bug per report.
E) Simple and repeatable reproduction steps.
F) Build/version where bug was found.

Question 26 of 30

https://www.classmarker.com/online-test/results/ 11/14
1/20/2020 Finished.

What are three advantages of Continuous Integration?

(choose the best three answers)

Correct answer: B) C) D)
You chose: B) C) D)
Note: This question displayed answer options in random order when taking this Test.

  A) Readability of code is improved.


B) Know immediately how a check-in affected the build.
C) The software is generally kept in a buildable state.
D) Broken builds are detected quickly.

Question 27 of 30

Who should be present during Product Backlog refinement?

(choose all that apply)

Correct answer: B) F)
You chose: B) F)
Note: This question displayed answer options in random order when taking this Test.

  A) Only the most senior people from the Development Team.


B) The Product Owner.
  C) The stakeholders.
  D) The external business analysts that have prepared the functional details.
  E) The integration architects from the release department.
F) The Development Team.

Question 28 of 30

Which statements describe why automated builds are important?

(choose the best three answers)

Correct answer: B) C) E)
You chose: B) C) E)
Note: This question displayed answer options in random order when taking this Test.

  A) They eliminate the need for Build Engineers.

https://www.classmarker.com/online-test/results/ 12/14
1/20/2020 Finished.
B) They allow frequent validation of the unit of software being worked on, ensuring it remains
in a potentially shippable state.
C) The build process is clearly defined and scripted, making it easy consistent and repeatable.
  D) They ensure your product remains bug free.
E) They support continuous integration.

Question 29 of 30

True or False: The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 30 of 30

Which describes the practice of expressing requirements as acceptance tests?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Object Driven Requirements Definition.

  B) Quality Oriented Requirements Definition.

C) Acceptance Test Driven Development

  D) Regression Testing

Feedback
Advanced practices of test-driven development can lead to Acceptance Test-driven development (ATDD) where
the criteria specified by the customer are automated into acceptance tests, which then drive the traditional unit

https://www.classmarker.com/online-test/results/ 13/14
1/20/2020 Finished.
test-driven development (UTDD) process.

https://www.classmarker.com/online-test/results/ 14/14
1/19/2020 Finished.

Title: Scrum Open

Percentage: 46.7%

Duration: 00:13:15

Date started: Sat 18 Jan 2020 12:19

Date finished: Sat 18 Jan 2020 12:33

Feedback
Thank you for taking the Open assessment of Scrum. Please review The Scrum Guide on Scrum.org and take this
assessment again to improve your score.

Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 14 Correct 2 Partially Correct 14 Incorrect

Question 1 of 30

Which of the below are roles on a Scrum Team?

(choose the best three answers)

Correct answer: B) C) E)
You chose: B) C) E)
Note: This question displayed answer options in random order when taking this Test.

  A) Customers
B) Product Owner
C) Development Team
  D) Users
E) Scrum Master

https://www.classmarker.com/online-test/results/ 1/16
1/19/2020 Finished.

Feedback
The Scrum Team consists of a Product Owner, the Development Team, and a Scrum Master.

Question 2 of 30

The Product Backlog is ordered by:

(choose the best answer)

Correct answer: D)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Least valuable items at the top to most valuable at the bottom.

B) Size, where small items are at the top and large items are at the bottom.

  C) Risk, where safer items are at the top, and riskier items are at the bottom.

D) Whatever is deemed most appropriate by the Product Owner.

  E) Items are randomly arranged.

Feedback
The Product Owner decides what makes the most sense to optimize the value of the work being done by the
Development Team.

Question 3 of 30

True or False: Scrum does not have a role called "project manager."

Correct answer: A)
You chose: A)

A) True

  B) False

Feedback
A Scrum Team has a Scrum Master, a Product Owner and a Development Team. As a whole they have all
controls needed.

Question 4 of 30
https://www.classmarker.com/online-test/results/ 2/16
1/19/2020 Finished.

Who is responsible for managing the progress of work during a Sprint?

(choose the best answer)

Correct answer: D)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The most junior member of the Team

B) The Scrum Master

  C) The Product Owner

D) The Development Team

Feedback
The Development Team uses the Daily Scrum to inspect progress toward the Sprint Goal and to inspect how
progress is trending toward completing the work in the Sprint Backlog.

Question 5 of 30

The maximum length of the Sprint Review (its time-box) is:

(choose the best answer)

Correct answer: C)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) 2 hours.

  B) 1 day.

C) 4 hours for a monthly Sprint. For shorter Sprints it is usually shorter.

  D) As long as needed.

E) 4 hours and longer as needed.

Feedback
Sprint Review is a four-hour time-boxed meeting for one-month Sprints. For shorter Sprints, the event is usually
shorter.

Question 6 of 30

https://www.classmarker.com/online-test/results/ 3/16
1/19/2020 Finished.

True or False: It is mandatory that the product increment be released to production at the end of
each Sprint.

Correct answer: B)
You chose: A)

A) True

B) False

Feedback
The product increment should be usable and releasable at the end of every Sprint, but it does not have to be
released.

Question 7 of 30

Who has the final say on the order of the Product Backlog?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The Stakeholders

B) The Product Owner

  C) The Development Team

  D) The CEO

  E) The Scrum Master

Feedback
The Product Owner is the sole person responsible for managing the Product Backlog.

Question 8 of 30

When does a Development Team member become the sole owner of a Sprint Backlog item?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 4/16
1/19/2020 Finished.
Correct answer: D)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) During the Daily Scrum.

  B) At the Sprint planning meeting.

C) Whenever a team member can accommodate more work.

D) Never. All Sprint Backlog Items are "owned" by the entire Development Team, even though
each one may be implemented by an individual development team member.

Feedback
Sprint Backlog and all of its items are collectively owned by the Development Team. No individual team
member can claim ownership over an item as this would block communication and collaboration.

Question 9 of 30

Which two things does the Development Team do during the first Sprint?

(choose the best two answers)

Correct answer: B) C)
You chose: A) B)
Note: This question displayed answer options in random order when taking this Test.

A) Create the complete Product Backlog to be developed in subsequent Sprints.


B) Develop and deliver at least one piece of functionality.
C) Deliver an increment of potentially releasable software.
  D) Develop a plan for the rest of the release.
  E) Determine the complete architecture and infrastructure for the product.

Feedback
The heart of Scrum is a Sprint, a time-box of one month or less during which a "Done", useable, and potentially
releasable product Increment is created. This applies to every Sprint.

Question 10 of 30

The Development Team should not be interrupted during the Sprint. The Sprint Goal should remain
intact. These are conditions that foster creativity, quality and productivity. 

(Which one the following answers is FALSE?)

https://www.classmarker.com/online-test/results/ 5/16
1/19/2020 Finished.

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team may work with the Product Owner to remove or add work if it finds
it has more or less capacity than it expected.
  B) As a decomposition of the selected Product Backlog Items, the Sprint Backlog changes
and may grow as the work emerges.
C) The Sprint Backlog is fully formulated in the Sprint Planning meeting and does not change
during the Sprint.
  D) The Product Owner can help clarify or optimize the Sprint when asked by the Development
Team.

Feedback
The Sprint Backlog makes visible all of the work that the Development Team identifies as necessary to meet the
Sprint Goal. The Development Team modifies the Sprint Backlog throughout the Sprint, and the Sprint Backlog
emerges during the Sprint.

Question 11 of 30

What is the recommended size for a Development Team (within the Scrum Team)?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) 7 plus or minus 2

  B) 9

  C) Minimal 7

D) 3 to 9

Feedback
Optimal Development Team size is small enough to remain nimble and large enough to complete significant
work. Fewer than three Development Team members decreases interaction and results in smaller productivity
gains. More than nine members simply requires too much coordination.

Question 12 of 30

https://www.classmarker.com/online-test/results/ 6/16
1/19/2020 Finished.

When many Development Teams are working on a single product, what best describes the
definition of "Done?"

(choose the best answer)

Correct answer: A)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

A) All Development Teams must have a definition of "Done" that makes their combined work
potentially releasable.
  B) Each Development Team defines and uses its own. The differences are discussed and
reconciled during a hardening Sprint.
C) Each Development Team uses its own but must make their definition clear to all other
teams so the differences are known.
  D) It depends.

Feedback
Scrum requires an Increment to be releasable. This is an Increment of product. Many teams working on a single
product are expected to deliver such an Increment.

Question 13 of 30

Which statement best describes a Product Owner's responsibility?

(choose the best answer)

Correct answer: B)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Directing the Development Team.

B) Optimizing the value of the work the Development Team does.

  C) Managing the project and ensuring that the work meets the commitments to the
stakeholders.
D) Keep stakeholders from distracting the Development Team.

Feedback
The Product Owner is responsible for maximizing the value of the product and the work of the Development
Team.

https://www.classmarker.com/online-test/results/ 7/16
1/19/2020 Finished.

Question 14 of 30

True or False: The purpose of a Sprint is to produce a done increment of working product.

Correct answer: A)
You chose: A)

A) True

  B) False

Feedback
The heart of Scrum is a Sprint, a time-box of one month or less during which a "Done", usable, and potentially
releasable product Increment is created.

Question 15 of 30

The three pillars of empirical process control are:

(choose the best answer)

Correct answer: D)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Respect For People, Kaizen, Eliminating Waste

  B) Planning, Inspection, Adaptation

C) Planning, Demonstration, Retrospective

D) Inspection, Transparency, Adaptation

  E) Transparency, Eliminating Waste, Kaizen

Feedback
Scrum is founded on empirical process control theory, or empiricism. Empiricism asserts that knowledge
comes from experience and making decisions based on what is known.
Three pillars uphold every implementation of empirical process control: transparency, inspection, and
adaptation.

Question 16 of 30

https://www.classmarker.com/online-test/results/ 8/16
1/19/2020 Finished.

Which of the following services are appropriate for a Scrum Master in regard to the Daily Scrum?

(choose the best answer)

Correct answer: B)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) Ensure that all 3 questions have been answered.

B) Teach the Development Team to keep the Daily Scrum within the 15 minute time-box.

  C) Facilitate in a way that ensures each team member has a chance to speak.

  D) Lead the discussions of the Development Team.

E) All answers apply.

Feedback
The Scrum Master ensures that the Development Team has the meeting, but the Development Team is
responsible for conducting the Daily Scrum. The Scrum Master teaches the Development Team to keep the
Daily Scrum within the 15-minute time-box. The Scrum Master enforces the rule that only Development Team
members participate in the Daily Scrum.

Question 17 of 30

Why is the Daily Scrum held at the same time and same place?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The place can be named.

  B) Rooms are hard to book and this lets it be booked in advance.

C) The consistency reduces complexity.

  D) The Product Owner demands it.

Feedback
The Daily Scrum is held at the same time and place each day to reduce complexity.

Question 18 of 30

https://www.classmarker.com/online-test/results/ 9/16
1/19/2020 Finished.

Who is required to attend the Daily Scrum?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team and Product Owner.

B) The Development Team.

  C) The Development Team and Scrum Master.

  D) The Scrum Master and Product Owner.

  E) The Scrum team.

Feedback
Only the people doing the work described on the Sprint Backlog need to inspect and adapt at the Daily Scrum.
If the Scrum Master or Product Owner is also on the Development Team, they will need to be at the Daily
Scrum. Otherwise, the Scrum Master simply has to make sure the Development Team knows how to conduct a
Daily Scrum and does so.

Question 19 of 30

True or False:  The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 20 of 30

When might a Sprint be abnormally cancelled?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 10/16
1/19/2020 Finished.
Correct answer: A)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

A) When the Sprint Goal becomes obsolete.

  B) When the sales department has an important new opportunity.

  C) When the Development Team feels that the work is too hard.

D) When it becomes clear that not everything will be finished by the end of the Sprint.

Feedback
A Sprint can be cancelled before the Sprint time-box is over. A Sprint would be cancelled if the Sprint Goal
becomes obsolete. This might occur if the company changes direction or if market or technology conditions
change.

Question 21 of 30

The time-box for the Sprint Planning meeting is?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Whenever it is done.

  B) Monthly.

  C) 4 hours.

D) 8 hours for a monthly Sprint. For shorter Sprints it is usually shorter.

Feedback
Sprint Planning is time-boxed to a maximum of eight hours for a one-month Sprint. For shorter Sprints, the
event is usually shorter.

Question 22 of 30

Development Team membership should change:

(choose the best answer)

https://www.classmarker.com/online-test/results/ 11/16
1/19/2020 Finished.
Correct answer: A)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

A) As needed, while taking into account a short term reduction in productivity.

  B) Every Sprint to promote shared learning.

C) Never, because it reduces productivity.

  D) As needed, with no special allowance for changes in productivity.

Feedback
Teams typically go through some steps before achieving a state of increased performance. Changing
membership typically reduces cohesion, affecting performance and productivity in the short term.

Question 23 of 30

Which events are time-boxed according to the Scrum Guide?

(choose the best three answers)

Correct answer: C) E) F)
You chose: B) C) F)
Note: This question displayed answer options in random order when taking this Test.

  A) Release Testing.
B) Release Retrospective.
C) Sprint Review.
  D) Sprint Testing.
E) The Sprint.
F) Daily Scrum.
  G) Design Sprint.

Feedback
The Scrum Guide states that all Scrum Events are time-boxed. The Sprint - 1 month or less, Sprint Planning -
maximum 8 hours for a one-month sprint, Daily Scrum - 15-minutes, Sprint Review - maximum 4 hours for a
one-month sprint, and the Sprint Retrospective - maximum 3 hours for a one-month sprint.

Question 24 of 30

https://www.classmarker.com/online-test/results/ 12/16
1/19/2020 Finished.

What is the main reason for the Scrum Master to be at the Daily Scrum?

(choose the best answer)

Correct answer: B)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) To gather status and progress information to report to management.

B) He or she does not have to be there; he or she only has to ensure the Development Team
has a Daily Scrum.
  C) To write down any changes to the Sprint Backlog, including adding new items, and tracking
 progress on the burn-down.
D) To make sure every team member answers the three questions.

Feedback
The Scrum Master enforces the rule that only Development Team members participate in the Daily Scrum.

Question 25 of 30

The length of a Sprint should be:

(choose the best answer)

Correct answer: D)
You chose: D)

  A) Short enough to keep the business risk acceptable to the Product Owner.

  B) Short enough to be able to synchronize the development work with other business events.

  C) No more than one month.

D) All of these answers are correct.

Feedback
All of these choices are appropriate considerations in determining the length of a Sprint.

Question 26 of 30

During a Sprint, a Development Team determines that it will not be able to finish the complete
forecast. Who should be present to review and adjust the Sprint work selected?

https://www.classmarker.com/online-test/results/ 13/16
1/19/2020 Finished.

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Product Owner and the Development Team.

  B) The Development Team.

  C) The Product Owner and all stakeholders.

  D) The Scrum Master, the project manager and the Development Team.

Feedback
During the Sprint, scope may be clarified and re-negotiated between the Product Owner and Development
Team as more is learned.

Question 27 of 30

When does the next Sprint begin?

(choose the best answer)

Correct answer: B)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Next Monday.

B) Immediately after the conclusion of the previous Sprint.

C) Immediately following the next Sprint Planning.

  D) When the Product Owner is ready.

Feedback
A new Sprint starts immediately after the conclusion of the previous Sprint.

Question 28 of 30

The CEO asks the Development Team to add a "very important" item to a Sprint that is in progress.
What should the Development Team do?

https://www.classmarker.com/online-test/results/ 14/16
1/19/2020 Finished.

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Inform the Product Owner so he/she can work with the CEO.

  B) Add the item to the current Sprint without any adjustments.

  C) Add the item to the next Sprint.

  D) Add the item to the current Sprint and drop an item of equal size.

Feedback
The items selected for a Sprint have been selected as most valuable with the Product Owner. The items serve
the Sprint's goal. No changes should be made that endanger the Sprint Goal. No one external to the Scrum
Team can force changes on the Development Team (Sprint Backlog) and the Product Owner (Product Backlog).

Question 29 of 30

Which statement best describes the Sprint Review?

(choose the best answer)

Correct answer: C)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) It is a demo at the end of the Sprint for everyone in the organization to check on the work
done.
  B) It is a mechanism to control the Development Team's activities during a Sprint.

C) It is when the Scrum Team and stakeholders inspect the outcome of a Sprint and figure out
what to do next.

Feedback
Every event in Scrum, besides the Sprint which is a container for the other events, is an opportunity to Inspect
AND Adapt.

Question 30 of 30

https://www.classmarker.com/online-test/results/ 15/16
1/19/2020 Finished.

The time-box for a Daily Scrum is?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) 15 minutes.

  B) 15 minutes for a 4 week sprint. For shorter Sprints it is usually shorter.

  C) 4 hours.

  D) Two minutes per person.

  E) The same time of day every day.

Feedback
The length of a daily Scrum is time-boxed at 15 minutes, it does not change with the length of a Sprint.

https://www.classmarker.com/online-test/results/ 16/16
1/20/2020 Finished.

Title: Scrum Open

Percentage: 66.7%

Duration: 00:10:51

Date started: Sun 19 Jan 2020 23:34

Date finished: Sun 19 Jan 2020 23:44

Feedback
Thank you for taking the Open assessment of Scrum. Please review The Scrum Guide on Scrum.org and take this
assessment again to improve your score.

Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 20 Correct 2 Partially Correct 8 Incorrect

Question 1 of 30

True or False:  The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 2 of 30
https://www.classmarker.com/online-test/results/ 1/16
1/20/2020 Finished.

Who should know the most about the progress toward a business objective or a release, and be
able to explain the alternatives most clearly?

(choose the best answer)

Correct answer: B)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team

B) The Product Owner

C) The Scrum Master

  D) The Project Manager

Feedback
The Product Owner is the sole person responsible for managing the Product Backlog, which includes that the
Product Backlog is visible, transparent, and clear to all, and shows what the Scrum Team will work on next.

Question 3 of 30

The maximum length of the Sprint Review (its time-box) is:

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) 1 day.

  B) 4 hours and longer as needed.

C) 4 hours for a monthly Sprint. For shorter Sprints it is usually shorter.

  D) As long as needed.

  E) 2 hours.

Feedback
Sprint Review is a four-hour time-boxed meeting for one-month Sprints. For shorter Sprints, the event is usually
shorter.

https://www.classmarker.com/online-test/results/ 2/16
1/20/2020 Finished.

Question 4 of 30

True or False: When multiple teams work together on the same product, each team should
maintain a separate Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
Products have one Product Backlog, regardless of how many teams are used. Any other setup makes it difficult
for the Development Team to determine what it should work on.

Question 5 of 30

True or False: The purpose of a Sprint is to produce a done increment of working product.

Correct answer: A)
You chose: A)

A) True

  B) False

Feedback
The heart of Scrum is a Sprint, a time-box of one month or less during which a "Done", usable, and potentially
releasable product Increment is created.

Question 6 of 30

During a Sprint, a Development Team determines that it will not be able to finish the complete
forecast. Who should be present to review and adjust the Sprint work selected?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Scrum Master, the project manager and the Development Team.
https://www.classmarker.com/online-test/results/ 3/16
1/20/2020 Finished.

  B) The Development Team.

C) The Product Owner and the Development Team.

  D) The Product Owner and all stakeholders.

Feedback
During the Sprint, scope may be clarified and re-negotiated between the Product Owner and Development
Team as more is learned.

Question 7 of 30

Which statement best describes a Product Owner's responsibility?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Keep stakeholders from distracting the Development Team.

B) Optimizing the value of the work the Development Team does.

  C) Managing the project and ensuring that the work meets the commitments to the
stakeholders.
  D) Directing the Development Team.

Feedback
The Product Owner is responsible for maximizing the value of the product and the work of the Development
Team.

Question 8 of 30

What does it mean to say that an event has a time-box?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The event must take at least a minimum amount of time.

https://www.classmarker.com/online-test/results/ 4/16
1/20/2020 Finished.
  B) The event must happen at a set time.

C) The event can take no more than a maximum amount of time.

  D) The event must happen by a given time.

Feedback
Time-boxed events are events that have a maximum duration.

Question 9 of 30

When does a Development Team member become the sole owner of a Sprint Backlog item?

(choose the best answer)

Correct answer: C)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) During the Daily Scrum.

  B) Whenever a team member can accommodate more work.

C) Never. All Sprint Backlog Items are "owned" by the entire Development Team, even though
each one may be implemented by an individual development team member.
  D) At the Sprint planning meeting.

Feedback
Sprint Backlog and all of its items are collectively owned by the Development Team. No individual team
member can claim ownership over an item as this would block communication and collaboration.

Question 10 of 30

When is a Sprint over?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) When all the tasks are completed.

B) When the time-box expires.

https://www.classmarker.com/online-test/results/ 5/16
1/20/2020 Finished.
  C) When all Product Backlog items meet their definition of done.

  D) When the Product Owner says it is done.

Feedback
The duration of a Sprint is fixed and cannot be shortened or lengthened.

Question 11 of 30

What are the two primary ways a Scrum Master keeps a Development Team working at its highest
level of productivity?

(choose the best two answers)

Correct answer: B) C)
You chose: B) D)
Note: This question displayed answer options in random order when taking this Test.

  A) By starting and ending the meetings at the proper time


B) By facilitating Development Team decisions
C) By removing impediments that hinder the Development Team
D) By keeping high value features high in the Product Backlog

Feedback
A Scrum Master is a servant-leader for the Development Team. Facilitation and removing impediments serves a
team in achieving the best productivity possible.

Question 12 of 30

Which events are time-boxed according to the Scrum Guide?

(choose the best three answers)

Correct answer: C) E) F)
You chose: B) C) F)
Note: This question displayed answer options in random order when taking this Test.

  A) Release Testing.
B) Release Retrospective.
C) Sprint Review.

https://www.classmarker.com/online-test/results/ 6/16
1/20/2020 Finished.
  D) Sprint Testing.
E) The Sprint.
F) Daily Scrum.
  G) Design Sprint.

Feedback
The Scrum Guide states that all Scrum Events are time-boxed. The Sprint - 1 month or less, Sprint Planning -
maximum 8 hours for a one-month sprint, Daily Scrum - 15-minutes, Sprint Review - maximum 4 hours for a
one-month sprint, and the Sprint Retrospective - maximum 3 hours for a one-month sprint.

Question 13 of 30

Who is on the Scrum Team?

(choose the best three answers)

Correct answer: A) B) C)
You chose: A) B) C)

A) The Scrum Master


B) The Product Owner
C) The Development Team
  D) Project Manager
  E) None of the above

Feedback
The Scrum Team consists of the Scrum Master (manages the process), the Product Owner (decides what to do)
and the Development Team (does the work).

Question 14 of 30

The Product Backlog is ordered by:

(choose the best answer)

Correct answer: E)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) Size, where small items are at the top and large items are at the bottom.

https://www.classmarker.com/online-test/results/ 7/16
1/20/2020 Finished.
  B) Items are randomly arranged.

  C) Risk, where safer items are at the top, and riskier items are at the bottom.

  D) Least valuable items at the top to most valuable at the bottom.

E) Whatever is deemed most appropriate by the Product Owner.

Feedback
The Product Owner decides what makes the most sense to optimize the value of the work being done by the
Development Team.

Question 15 of 30

True or False: It is mandatory that the product increment be released to production at the end of
each Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
The product increment should be usable and releasable at the end of every Sprint, but it does not have to be
released.

Question 16 of 30

The CEO asks the Development Team to add a "very important" item to a Sprint that is in progress.
What should the Development Team do?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Add the item to the current Sprint without any adjustments.

B) Inform the Product Owner so he/she can work with the CEO.

  C) Add the item to the current Sprint and drop an item of equal size.

  D) Add the item to the next Sprint.


https://www.classmarker.com/online-test/results/ 8/16
1/20/2020 Finished.

Feedback
The items selected for a Sprint have been selected as most valuable with the Product Owner. The items serve
the Sprint's goal. No changes should be made that endanger the Sprint Goal. No one external to the Scrum
Team can force changes on the Development Team (Sprint Backlog) and the Product Owner (Product Backlog).

Question 17 of 30

Development Team membership should change:

(choose the best answer)

Correct answer: C)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) As needed, with no special allowance for changes in productivity.

  B) Every Sprint to promote shared learning.

C) As needed, while taking into account a short term reduction in productivity.

  D) Never, because it reduces productivity.

Feedback
Teams typically go through some steps before achieving a state of increased performance. Changing
membership typically reduces cohesion, affecting performance and productivity in the short term.

Question 18 of 30

When does the next Sprint begin?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) When the Product Owner is ready.

  B) Next Monday.

C) Immediately after the conclusion of the previous Sprint.

  D) Immediately following the next Sprint Planning.

https://www.classmarker.com/online-test/results/ 9/16
1/20/2020 Finished.

Feedback
A new Sprint starts immediately after the conclusion of the previous Sprint.

Question 19 of 30

What is the recommended size for a Development Team (within the Scrum Team)?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) 9

  B) 7 plus or minus 2

C) 3 to 9

  D) Minimal 7

Feedback
Optimal Development Team size is small enough to remain nimble and large enough to complete significant
work. Fewer than three Development Team members decreases interaction and results in smaller productivity
gains. More than nine members simply requires too much coordination.

Question 20 of 30

Which statement best describes Scrum?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) A framework within which complex products in complex environments are developed.

  B) A defined and predictive process that conforms to the principles of Scientific Management.

  C) A complete methodology that defines how to develop software.

  D) A cookbook that defines best practices for software development.

Feedback
https://www.classmarker.com/online-test/results/ 10/16
1/20/2020 Finished.
Scrum is not a process or a technique for building products; rather, it is a framework within which you can
employ various processes and techniques.

Question 21 of 30

Which of the following services are appropriate for a Scrum Master in regard to the Daily Scrum?

(choose the best answer)

Correct answer: E)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Facilitate in a way that ensures each team member has a chance to speak.

  B) Lead the discussions of the Development Team.

  C) Ensure that all 3 questions have been answered.

D) All answers apply.

E) Teach the Development Team to keep the Daily Scrum within the 15 minute time-box.

Feedback
The Scrum Master ensures that the Development Team has the meeting, but the Development Team is
responsible for conducting the Daily Scrum. The Scrum Master teaches the Development Team to keep the
Daily Scrum within the 15-minute time-box. The Scrum Master enforces the rule that only Development Team
members participate in the Daily Scrum.

Question 22 of 30

Who creates the definition of "Done"?

(choose the best answer)

Correct answer: B)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Scrum Team, in a collaborative effort where the result is the common denominator of
all members' definitions
B) The development organization (or Development Team if none is available from the
development organization)
  C) The Product Owner as he/she is responsible for the product's success

  D) The Scrum Master as he/she is responsible for the Development Team's productivity

https://www.classmarker.com/online-test/results/ 11/16
1/20/2020 Finished.

Feedback
If the definition of "done" is part of the conventions, standards or guidelines of the development organization,
all Scrum Teams must follow it as a minimum. The Development Team of the Scrum Team can complement it
with elements specific for the product or context.
If "done" for an increment is not a convention of the development organization, the Development Team of the
Scrum Team must define a definition of "done" appropriate for the product.

Question 23 of 30

Upon what type of process control is Scrum based?

(choose the best answer)

Correct answer: D)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Complex

  B) Hybrid

  C) Defined

D) Empirical

Feedback
Scrum is founded on empirical process control theory, or empiricism. Empiricism asserts that knowledge
comes from experience and making decisions based on what is known.

Question 24 of 30

The time-box for the Sprint Planning meeting is?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) 4 hours.

  B) Monthly.

C) 8 hours for a monthly Sprint. For shorter Sprints it is usually shorter.

  D) Whenever it is done.

https://www.classmarker.com/online-test/results/ 12/16
1/20/2020 Finished.

Feedback
Sprint Planning is time-boxed to a maximum of eight hours for a one-month Sprint. For shorter Sprints, the
event is usually shorter.

Question 25 of 30

An organization has decided to adopt Scrum, but management wants to change the terminology to
fit with terminology already used. What will likely happen if this is done?

(choose the best answer)

Correct answer: D)
You chose: B)

  A) Without a new vocabulary as a reminder of the change, very little change may actually
happen.
B) The organization may not understand what has changed with Scrum and the benefits of
Scrum may be lost.
  C) Management may feel less anxious.

D) All of the above.

Question 26 of 30

Why is the Daily Scrum held at the same time and same place?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The place can be named.

  B) Rooms are hard to book and this lets it be booked in advance.

C) The consistency reduces complexity.

  D) The Product Owner demands it.

Feedback
The Daily Scrum is held at the same time and place each day to reduce complexity.

https://www.classmarker.com/online-test/results/ 13/16
1/20/2020 Finished.

Question 27 of 30

The Development Team should not be interrupted during the Sprint. The Sprint Goal should remain
intact. These are conditions that foster creativity, quality and productivity. 

(Which one the following answers is FALSE?)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team may work with the Product Owner to remove or add work if it finds
it has more or less capacity than it expected.
  B) The Product Owner can help clarify or optimize the Sprint when asked by the Development
Team.
  C) As a decomposition of the selected Product Backlog Items, the Sprint Backlog changes
and may grow as the work emerges.
D) The Sprint Backlog is fully formulated in the Sprint Planning meeting and does not change
during the Sprint.

Feedback
The Sprint Backlog makes visible all of the work that the Development Team identifies as necessary to meet the
Sprint Goal. The Development Team modifies the Sprint Backlog throughout the Sprint, and the Sprint Backlog
emerges during the Sprint.

Question 28 of 30

Which statement best describes the Sprint Review?

(choose the best answer)

Correct answer: C)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) It is a demo at the end of the Sprint for everyone in the organization to check on the work
done.
  B) It is a mechanism to control the Development Team's activities during a Sprint.

C) It is when the Scrum Team and stakeholders inspect the outcome of a Sprint and figure out
what to do next.

https://www.classmarker.com/online-test/results/ 14/16
1/20/2020 Finished.

Feedback
Every event in Scrum, besides the Sprint which is a container for the other events, is an opportunity to Inspect
AND Adapt.

Question 29 of 30

When might a Sprint be abnormally cancelled?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) When the Sprint Goal becomes obsolete.

  B) When the sales department has an important new opportunity.

  C) When the Development Team feels that the work is too hard.

  D) When it becomes clear that not everything will be finished by the end of the Sprint.

Feedback
A Sprint can be cancelled before the Sprint time-box is over. A Sprint would be cancelled if the Sprint Goal
becomes obsolete. This might occur if the company changes direction or if market or technology conditions
change.

Question 30 of 30

What is the main reason for the Scrum Master to be at the Daily Scrum?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) To write down any changes to the Sprint Backlog, including adding new items, and tracking
 progress on the burn-down.
  B) To gather status and progress information to report to management.

  C) To make sure every team member answers the three questions.

D) He or she does not have to be there; he or she only has to ensure the Development Team
has a Daily Scrum.

https://www.classmarker.com/online-test/results/ 15/16
1/20/2020 Finished.

Feedback
The Scrum Master enforces the rule that only Development Team members participate in the Daily Scrum.

https://www.classmarker.com/online-test/results/ 16/16
1/20/2020 Finished.

Title: Scrum Open

Percentage: 83.3%

Duration: 00:11:56

Date started: Mon 20 Jan 2020 04:47

Date finished: Mon 20 Jan 2020 04:59

Feedback
Thank you for taking the Open assessment of Scrum. Please review The Scrum Guide on Scrum.org and take this
assessment again to improve your score.

Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 25 Correct 5 Incorrect

Question 1 of 30

The Development Team should not be interrupted during the Sprint. The Sprint Goal should remain
intact. These are conditions that foster creativity, quality and productivity. 

(Which one the following answers is FALSE?)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team may work with the Product Owner to remove or add work if it finds
it has more or less capacity than it expected.
  B) As a decomposition of the selected Product Backlog Items, the Sprint Backlog changes
and may grow as the work emerges.
C) The Sprint Backlog is fully formulated in the Sprint Planning meeting and does not change
during the Sprint.

https://www.classmarker.com/online-test/results/ 1/16
1/20/2020 Finished.
  D) The Product Owner can help clarify or optimize the Sprint when asked by the Development
Team.

Feedback
The Sprint Backlog makes visible all of the work that the Development Team identifies as necessary to meet the
Sprint Goal. The Development Team modifies the Sprint Backlog throughout the Sprint, and the Sprint Backlog
emerges during the Sprint.

Question 2 of 30

Select three incorrect, untrue, or misleading statements about Scrum?

(choose the best three answers)

Correct answer: A) C) D)
You chose: B) E) F)
Note: This question displayed answer options in random order when taking this Test.

A) Scrum is a framework that eliminates complexity.


B) Scrum is a framework for developing and sustaining complex products.
C) Scrum is a methodology where you can pick and choose which parts of Scrum you think
will work for your environment.
D) Scrum is like traditional processes but with self-organization to replace Project Managers.
E) Scrum is based on empirical process control theory.
F) Each component of Scrum serves a specific purpose and is essential to Scrum's success
and your usage of Scrum to develop complex products.

Feedback
1. Scrum is meant to be implemented as prescribed in the Scrum Guide.  For example, the five events
in the Scrum Guide are mandatory, each event has a specific purpose.  
2. Scrum does not eliminate the complexity that is inherent in delivering a product in today’s world,
instead it offers a framework for dealing with complexity.  By regularly delivering increments of
value teams gain the ability to inspect and rapidly adapt based on the feedback received.
3. Project Managers are not simply replaced by self-organizing teams. Scrum is a framework for
optimizing decision making based on the knowledge and experience of the entire team.  

Question 3 of 30

The time-box for a Daily Scrum is?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 2/16
1/20/2020 Finished.
Correct answer: E)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) 4 hours.

  B) The same time of day every day.

  C) Two minutes per person.

D) 15 minutes for a 4 week sprint. For shorter Sprints it is usually shorter.

E) 15 minutes.

Feedback
The length of a daily Scrum is time-boxed at 15 minutes, it does not change with the length of a Sprint.

Question 4 of 30

Which of the following services are appropriate for a Scrum Master in regard to the Daily Scrum?

(choose the best answer)

Correct answer: E)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Ensure that all 3 questions have been answered.

B) All answers apply.

  C) Lead the discussions of the Development Team.

  D) Facilitate in a way that ensures each team member has a chance to speak.

E) Teach the Development Team to keep the Daily Scrum within the 15 minute time-box.

Feedback
The Scrum Master ensures that the Development Team has the meeting, but the Development Team is
responsible for conducting the Daily Scrum. The Scrum Master teaches the Development Team to keep the
Daily Scrum within the 15-minute time-box. The Scrum Master enforces the rule that only Development Team
members participate in the Daily Scrum.

Question 5 of 30

What is the role of Management in Scrum?

https://www.classmarker.com/online-test/results/ 3/16
1/20/2020 Finished.

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Identify and remove people that aren't working hard enough.

  B) Monitor the Development Team's productivity.

C) Support the Product Owner with insights and information into high value product and
system capabilities. Support the Scrum Master to cause organizational change that fosters
empiricism, self-organization, bottom-up intelligence, and intelligent release of software.
  D) Continually monitor staffing levels of the Development Team.

Feedback
Management has no active role in the actual product development through Scrum. However, management
external to the Scrum team is incredibly important in setting the vision and strategy to guide the overall
direction of the organization.

Question 6 of 30

An organization has decided to adopt Scrum, but management wants to change the terminology to
fit with terminology already used. What will likely happen if this is done?

(choose the best answer)

Correct answer: D)
You chose: D)

  A) Without a new vocabulary as a reminder of the change, very little change may actually
happen.
  B) The organization may not understand what has changed with Scrum and the benefits of
Scrum may be lost.
  C) Management may feel less anxious.

D) All of the above.

Question 7 of 30

Who is responsible for managing the progress of work during a Sprint?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 4/16
1/20/2020 Finished.
Correct answer: D)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Scrum Master

  B) The most junior member of the Team

  C) The Product Owner

D) The Development Team

Feedback
The Development Team uses the Daily Scrum to inspect progress toward the Sprint Goal and to inspect how
progress is trending toward completing the work in the Sprint Backlog.

Question 8 of 30

Which statement best describes Scrum?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) A complete methodology that defines how to develop software.

  B) A defined and predictive process that conforms to the principles of Scientific Management.

  C) A cookbook that defines best practices for software development.

D) A framework within which complex products in complex environments are developed.

Feedback
Scrum is not a process or a technique for building products; rather, it is a framework within which you can
employ various processes and techniques.

Question 9 of 30

Upon what type of process control is Scrum based?

(choose the best answer)

Correct answer: B)
You chose: B)
https://www.classmarker.com/online-test/results/ 5/16
1/20/2020 Finished.
Note: This question displayed answer options in random order when taking this Test.

  A) Complex

B) Empirical

  C) Defined

  D) Hybrid

Feedback
Scrum is founded on empirical process control theory, or empiricism. Empiricism asserts that knowledge
comes from experience and making decisions based on what is known.

Question 10 of 30

The length of a Sprint should be:

(choose the best answer)

Correct answer: D)
You chose: D)

  A) Short enough to keep the business risk acceptable to the Product Owner.

  B) Short enough to be able to synchronize the development work with other business events.

  C) No more than one month.

D) All of these answers are correct.

Feedback
All of these choices are appropriate considerations in determining the length of a Sprint.

Question 11 of 30

Who is on the Scrum Team?

(choose the best three answers)

Correct answer: A) B) C)
You chose: A) B) C)

A) The Scrum Master


B) The Product Owner

https://www.classmarker.com/online-test/results/ 6/16
1/20/2020 Finished.
C) The Development Team
  D) Project Manager
  E) None of the above

Feedback
The Scrum Team consists of the Scrum Master (manages the process), the Product Owner (decides what to do)
and the Development Team (does the work).

Question 12 of 30

Why is the Daily Scrum held at the same time and same place?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The Product Owner demands it.

  B) Rooms are hard to book and this lets it be booked in advance.

  C) The place can be named.

D) The consistency reduces complexity.

Feedback
The Daily Scrum is held at the same time and place each day to reduce complexity.

Question 13 of 30

The time-box for the Sprint Planning meeting is?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Whenever it is done.

  B) 4 hours.

C) 8 hours for a monthly Sprint. For shorter Sprints it is usually shorter.

https://www.classmarker.com/online-test/results/ 7/16
1/20/2020 Finished.
  D) Monthly.

Feedback
Sprint Planning is time-boxed to a maximum of eight hours for a one-month Sprint. For shorter Sprints, the
event is usually shorter.

Question 14 of 30

When does the next Sprint begin?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Immediately following the next Sprint Planning.

  B) Next Monday.

  C) When the Product Owner is ready.

D) Immediately after the conclusion of the previous Sprint.

Feedback
A new Sprint starts immediately after the conclusion of the previous Sprint.

Question 15 of 30

Development Team membership should change:

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) As needed, with no special allowance for changes in productivity.

  B) Never, because it reduces productivity.

C) As needed, while taking into account a short term reduction in productivity.

  D) Every Sprint to promote shared learning.

https://www.classmarker.com/online-test/results/ 8/16
1/20/2020 Finished.

Feedback
Teams typically go through some steps before achieving a state of increased performance. Changing
membership typically reduces cohesion, affecting performance and productivity in the short term.

Question 16 of 30

True or False: The purpose of a Sprint is to produce a done increment of working product.

Correct answer: A)
You chose: A)

A) True

  B) False

Feedback
The heart of Scrum is a Sprint, a time-box of one month or less during which a "Done", usable, and potentially
releasable product Increment is created.

Question 17 of 30

What does it mean to say that an event has a time-box?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The event must happen by a given time.

B) The event can take no more than a maximum amount of time.

  C) The event must take at least a minimum amount of time.

  D) The event must happen at a set time.

Feedback
Time-boxed events are events that have a maximum duration.

Question 18 of 30

https://www.classmarker.com/online-test/results/ 9/16
1/20/2020 Finished.

Who should know the most about the progress toward a business objective or a release, and be
able to explain the alternatives most clearly?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The Product Owner

  B) The Project Manager

  C) The Development Team

  D) The Scrum Master

Feedback
The Product Owner is the sole person responsible for managing the Product Backlog, which includes that the
Product Backlog is visible, transparent, and clear to all, and shows what the Scrum Team will work on next.

Question 19 of 30

The Product Backlog is ordered by:

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Items are randomly arranged.

  B) Size, where small items are at the top and large items are at the bottom.

  C) Least valuable items at the top to most valuable at the bottom.

D) Whatever is deemed most appropriate by the Product Owner.

  E) Risk, where safer items are at the top, and riskier items are at the bottom.

Feedback
The Product Owner decides what makes the most sense to optimize the value of the work being done by the
Development Team.

Question 20 of 30

https://www.classmarker.com/online-test/results/ 10/16
1/20/2020 Finished.

During a Sprint, a Development Team determines that it will not be able to finish the complete
forecast. Who should be present to review and adjust the Sprint work selected?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The Product Owner and all stakeholders.

  B) The Scrum Master, the project manager and the Development Team.

  C) The Development Team.

D) The Product Owner and the Development Team.

Feedback
During the Sprint, scope may be clarified and re-negotiated between the Product Owner and Development
Team as more is learned.

Question 21 of 30

Which statement best describes a Product Owner's responsibility?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Keep stakeholders from distracting the Development Team.

  B) Managing the project and ensuring that the work meets the commitments to the
stakeholders.
  C) Directing the Development Team.

D) Optimizing the value of the work the Development Team does.

Feedback
The Product Owner is responsible for maximizing the value of the product and the work of the Development
Team.

Question 22 of 30

https://www.classmarker.com/online-test/results/ 11/16
1/20/2020 Finished.

The Development Team should have all the skills needed to:

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Turn the Product Backlog items it selects into an increment of potentially releasable
product functionality.
  B) Complete the project as estimated when the date and cost are committed to the Product
Owner.
  C) Do all of the development work, except for specialized testing that requires additional tools
and environments.

Feedback
The Development Team consists of professionals who do the work of delivering a potentially releasable
Increment of "Done" product at the end of each Sprint. Development Teams are cross-functional, with all of the
skills as a team necessary to create a product Increment.

Question 23 of 30

True or False:  The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

Question 24 of 30

What is the main reason for the Scrum Master to be at the Daily Scrum?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 12/16
1/20/2020 Finished.
Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) He or she does not have to be there; he or she only has to ensure the Development Team
has a Daily Scrum.
  B) To make sure every team member answers the three questions.

  C) To write down any changes to the Sprint Backlog, including adding new items, and tracking
 progress on the burn-down.
  D) To gather status and progress information to report to management.

Feedback
The Scrum Master enforces the rule that only Development Team members participate in the Daily Scrum.

Question 25 of 30

How much work must a Development Team do to a Product Backlog item it selects for a Sprint?

(choose the best answer)

Correct answer: D)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Analysis, design, programming, testing and documentation.

B) As much as it can fit into the Sprint.

  C) All development work and at least some testing.

D) As much as it has told the Product Owner will be done for every Product Backlog item it
selects in conformance with the definition of "Done".

Feedback
The purpose of each Sprint is to deliver Increments of potentially releasable functionality that adhere to the
Scrum Team's current definition of "Done".

Question 26 of 30

When might a Sprint be abnormally cancelled?

(choose the best answer)

https://www.classmarker.com/online-test/results/ 13/16
1/20/2020 Finished.
Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) When it becomes clear that not everything will be finished by the end of the Sprint.

B) When the Sprint Goal becomes obsolete.

  C) When the Development Team feels that the work is too hard.

  D) When the sales department has an important new opportunity.

Feedback
A Sprint can be cancelled before the Sprint time-box is over. A Sprint would be cancelled if the Sprint Goal
becomes obsolete. This might occur if the company changes direction or if market or technology conditions
change.

Question 27 of 30

What is the recommended size for a Development Team (within the Scrum Team)?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) 3 to 9

  B) 9

  C) 7 plus or minus 2

  D) Minimal 7

Feedback
Optimal Development Team size is small enough to remain nimble and large enough to complete significant
work. Fewer than three Development Team members decreases interaction and results in smaller productivity
gains. More than nine members simply requires too much coordination.

Question 28 of 30

Which two things does the Development Team do during the first Sprint?

(choose the best two answers)

https://www.classmarker.com/online-test/results/ 14/16
1/20/2020 Finished.
Correct answer: A) E)
You chose: A) E)
Note: This question displayed answer options in random order when taking this Test.

A) Deliver an increment of potentially releasable software.


  B) Develop a plan for the rest of the release.
  C) Determine the complete architecture and infrastructure for the product.
  D) Create the complete Product Backlog to be developed in subsequent Sprints.
E) Develop and deliver at least one piece of functionality.

Feedback
The heart of Scrum is a Sprint, a time-box of one month or less during which a "Done", useable, and potentially
releasable product Increment is created. This applies to every Sprint.

Question 29 of 30

True or False: It is mandatory that the product increment be released to production at the end of
each Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
The product increment should be usable and releasable at the end of every Sprint, but it does not have to be
released.

Question 30 of 30

The CEO asks the Development Team to add a "very important" item to a Sprint that is in progress.
What should the Development Team do?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Add the item to the next Sprint.

https://www.classmarker.com/online-test/results/ 15/16
1/20/2020 Finished.
  B) Add the item to the current Sprint without any adjustments.

C) Inform the Product Owner so he/she can work with the CEO.

  D) Add the item to the current Sprint and drop an item of equal size.

Feedback
The items selected for a Sprint have been selected as most valuable with the Product Owner. The items serve
the Sprint's goal. No changes should be made that endanger the Sprint Goal. No one external to the Scrum
Team can force changes on the Development Team (Sprint Backlog) and the Product Owner (Product Backlog).

https://www.classmarker.com/online-test/results/ 16/16
1/21/2020 Finished.

Title: Scrum Open

Percentage: 90%

Duration: 00:10:02

Date started: Mon 20 Jan 2020 23:01

Date finished: Mon 20 Jan 2020 23:11

Feedback
Congratulations! Your score on the Open assessment demonstrates you know some Scrum basics.

Scrum on,
Ken Schwaber

Correctly answered Incorrectly answered Missed correct option

All Questions 27 Correct 1 Partially Correct 2 Incorrect

Question 1 of 30

Who is required to attend the Daily Scrum?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team and Scrum Master.

  B) The Development Team and Product Owner.

C) The Development Team.

  D) The Scrum team.

  E) The Scrum Master and Product Owner.

https://www.classmarker.com/online-test/results/ 1/16
1/21/2020 Finished.

Feedback
Only the people doing the work described on the Sprint Backlog need to inspect and adapt at the Daily Scrum.
If the Scrum Master or Product Owner is also on the Development Team, they will need to be at the Daily
Scrum. Otherwise, the Scrum Master simply has to make sure the Development Team knows how to conduct a
Daily Scrum and does so.

Question 2 of 30

The maximum length of the Sprint Review (its time-box) is:

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) As long as needed.

  B) 2 hours.

C) 4 hours for a monthly Sprint. For shorter Sprints it is usually shorter.

  D) 4 hours and longer as needed.

  E) 1 day.

Feedback
Sprint Review is a four-hour time-boxed meeting for one-month Sprints. For shorter Sprints, the event is usually
shorter.

Question 3 of 30

When many Development Teams are working on a single product, what best describes the
definition of "Done?"

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Each Development Team uses its own but must make their definition clear to all other
teams so the differences are known.
  B) Each Development Team defines and uses its own. The differences are discussed and
reconciled during a hardening Sprint.

https://www.classmarker.com/online-test/results/ 2/16
1/21/2020 Finished.
C) All Development Teams must have a definition of "Done" that makes their combined work
potentially releasable.
  D) It depends.

Feedback
Scrum requires an Increment to be releasable. This is an Increment of product. Many teams working on a single
product are expected to deliver such an Increment.

Question 4 of 30

What does it mean to say that an event has a time-box?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) The event can take no more than a maximum amount of time.

  B) The event must happen by a given time.

  C) The event must take at least a minimum amount of time.

  D) The event must happen at a set time.

Feedback
Time-boxed events are events that have a maximum duration.

Question 5 of 30

Which statement best describes a Product Owner's responsibility?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) Optimizing the value of the work the Development Team does.

  B) Keep stakeholders from distracting the Development Team.

  C) Directing the Development Team.

https://www.classmarker.com/online-test/results/ 3/16
1/21/2020 Finished.
  D) Managing the project and ensuring that the work meets the commitments to the
stakeholders.

Feedback
The Product Owner is responsible for maximizing the value of the product and the work of the Development
Team.

Question 6 of 30

The CEO asks the Development Team to add a "very important" item to a Sprint that is in progress.
What should the Development Team do?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Add the item to the current Sprint and drop an item of equal size.

B) Inform the Product Owner so he/she can work with the CEO.

  C) Add the item to the next Sprint.

  D) Add the item to the current Sprint without any adjustments.

Feedback
The items selected for a Sprint have been selected as most valuable with the Product Owner. The items serve
the Sprint's goal. No changes should be made that endanger the Sprint Goal. No one external to the Scrum
Team can force changes on the Development Team (Sprint Backlog) and the Product Owner (Product Backlog).

Question 7 of 30

The time-box for a Daily Scrum is?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The same time of day every day.

B) 15 minutes.

https://www.classmarker.com/online-test/results/ 4/16
1/21/2020 Finished.
  C) Two minutes per person.

  D) 15 minutes for a 4 week sprint. For shorter Sprints it is usually shorter.

  E) 4 hours.

Feedback
The length of a daily Scrum is time-boxed at 15 minutes, it does not change with the length of a Sprint.

Question 8 of 30

An organization has decided to adopt Scrum, but management wants to change the terminology to
fit with terminology already used. What will likely happen if this is done?

(choose the best answer)

Correct answer: D)
You chose: D)

  A) Without a new vocabulary as a reminder of the change, very little change may actually
happen.
  B) The organization may not understand what has changed with Scrum and the benefits of
Scrum may be lost.
  C) Management may feel less anxious.

D) All of the above.

Question 9 of 30

Who has the final say on the order of the Product Backlog?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The CEO

  B) The Scrum Master

  C) The Stakeholders

D) The Product Owner

https://www.classmarker.com/online-test/results/ 5/16
1/21/2020 Finished.
  E) The Development Team

Feedback
The Product Owner is the sole person responsible for managing the Product Backlog.

Question 10 of 30

How much work must a Development Team do to a Product Backlog item it selects for a Sprint?

(choose the best answer)

Correct answer: D)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Analysis, design, programming, testing and documentation.

  B) All development work and at least some testing.

C) As much as it can fit into the Sprint.

D) As much as it has told the Product Owner will be done for every Product Backlog item it
selects in conformance with the definition of "Done".

Feedback
The purpose of each Sprint is to deliver Increments of potentially releasable functionality that adhere to the
Scrum Team's current definition of "Done".

Question 11 of 30

When does the next Sprint begin?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) When the Product Owner is ready.

B) Immediately after the conclusion of the previous Sprint.

  C) Next Monday.

  D) Immediately following the next Sprint Planning.

https://www.classmarker.com/online-test/results/ 6/16
1/21/2020 Finished.

Feedback
A new Sprint starts immediately after the conclusion of the previous Sprint.

Question 12 of 30

Which statement best describes the Sprint Review?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) It is a demo at the end of the Sprint for everyone in the organization to check on the work
done.
  B) It is a mechanism to control the Development Team's activities during a Sprint.

C) It is when the Scrum Team and stakeholders inspect the outcome of a Sprint and figure out
what to do next.

Feedback
Every event in Scrum, besides the Sprint which is a container for the other events, is an opportunity to Inspect
AND Adapt.

Question 13 of 30

Who creates the definition of "Done"?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) The Scrum Team, in a collaborative effort where the result is the common denominator of
all members' definitions
B) The development organization (or Development Team if none is available from the
development organization)
  C) The Product Owner as he/she is responsible for the product's success

  D) The Scrum Master as he/she is responsible for the Development Team's productivity

https://www.classmarker.com/online-test/results/ 7/16
1/21/2020 Finished.

Feedback
If the definition of "done" is part of the conventions, standards or guidelines of the development organization,
all Scrum Teams must follow it as a minimum. The Development Team of the Scrum Team can complement it
with elements specific for the product or context.
If "done" for an increment is not a convention of the development organization, the Development Team of the
Scrum Team must define a definition of "done" appropriate for the product.

Question 14 of 30

When does a Development Team member become the sole owner of a Sprint Backlog item?

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) During the Daily Scrum.

B) Never. All Sprint Backlog Items are "owned" by the entire Development Team, even though
each one may be implemented by an individual development team member.
  C) Whenever a team member can accommodate more work.

  D) At the Sprint planning meeting.

Feedback
Sprint Backlog and all of its items are collectively owned by the Development Team. No individual team
member can claim ownership over an item as this would block communication and collaboration.

Question 15 of 30

The three pillars of empirical process control are:

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) Respect For People, Kaizen, Eliminating Waste

  B) Planning, Inspection, Adaptation

  C) Planning, Demonstration, Retrospective

D) Inspection, Transparency, Adaptation


https://www.classmarker.com/online-test/results/ 8/16
1/21/2020 Finished.

  E) Transparency, Eliminating Waste, Kaizen

Feedback
Scrum is founded on empirical process control theory, or empiricism. Empiricism asserts that knowledge
comes from experience and making decisions based on what is known.
Three pillars uphold every implementation of empirical process control: transparency, inspection, and
adaptation.

Question 16 of 30

Which statement best describes Scrum?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) A cookbook that defines best practices for software development.

  B) A defined and predictive process that conforms to the principles of Scientific Management.

C) A framework within which complex products in complex environments are developed.

  D) A complete methodology that defines how to develop software.

Feedback
Scrum is not a process or a technique for building products; rather, it is a framework within which you can
employ various processes and techniques.

Question 17 of 30

True or False: It is mandatory that the product increment be released to production at the end of
each Sprint.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback

https://www.classmarker.com/online-test/results/ 9/16
1/21/2020 Finished.
The product increment should be usable and releasable at the end of every Sprint, but it does not have to be
released.

Question 18 of 30

During a Sprint, a Development Team determines that it will not be able to finish the complete
forecast. Who should be present to review and adjust the Sprint work selected?

(choose the best answer)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) The Development Team.

  B) The Scrum Master, the project manager and the Development Team.

  C) The Product Owner and all stakeholders.

D) The Product Owner and the Development Team.

Feedback
During the Sprint, scope may be clarified and re-negotiated between the Product Owner and Development
Team as more is learned.

Question 19 of 30

The Development Team should not be interrupted during the Sprint. The Sprint Goal should remain
intact. These are conditions that foster creativity, quality and productivity. 

(Which one the following answers is FALSE?)

Correct answer: D)
You chose: D)
Note: This question displayed answer options in random order when taking this Test.

  A) As a decomposition of the selected Product Backlog Items, the Sprint Backlog changes
and may grow as the work emerges.
  B) The Product Owner can help clarify or optimize the Sprint when asked by the Development
Team.
  C) The Development Team may work with the Product Owner to remove or add work if it finds
it has more or less capacity than it expected.

https://www.classmarker.com/online-test/results/ 10/16
1/21/2020 Finished.
D) The Sprint Backlog is fully formulated in the Sprint Planning meeting and does not change
during the Sprint.

Feedback
The Sprint Backlog makes visible all of the work that the Development Team identifies as necessary to meet the
Sprint Goal. The Development Team modifies the Sprint Backlog throughout the Sprint, and the Sprint Backlog
emerges during the Sprint.

Question 20 of 30

When is a Sprint over?

(choose the best answer)

Correct answer: A)
You chose: A)
Note: This question displayed answer options in random order when taking this Test.

A) When the time-box expires.

  B) When all the tasks are completed.

  C) When the Product Owner says it is done.

  D) When all Product Backlog items meet their definition of done.

Feedback
The duration of a Sprint is fixed and cannot be shortened or lengthened.

Question 21 of 30

Which of the following services are appropriate for a Scrum Master in regard to the Daily Scrum?

(choose the best answer)

Correct answer: B)
You chose: E)
Note: This question displayed answer options in random order when taking this Test.

  A) Facilitate in a way that ensures each team member has a chance to speak.

B) Teach the Development Team to keep the Daily Scrum within the 15 minute time-box.

  C) Lead the discussions of the Development Team.

  D) Ensure that all 3 questions have been answered.


https://www.classmarker.com/online-test/results/ 11/16
1/21/2020 Finished.

E) All answers apply.

Feedback
The Scrum Master ensures that the Development Team has the meeting, but the Development Team is
responsible for conducting the Daily Scrum. The Scrum Master teaches the Development Team to keep the
Daily Scrum within the 15-minute time-box. The Scrum Master enforces the rule that only Development Team
members participate in the Daily Scrum.

Question 22 of 30

What are the two primary ways a Scrum Master keeps a Development Team working at its highest
level of productivity?

(choose the best two answers)

Correct answer: B) C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) By starting and ending the meetings at the proper time


B) By facilitating Development Team decisions
C) By removing impediments that hinder the Development Team
  D) By keeping high value features high in the Product Backlog

Feedback
A Scrum Master is a servant-leader for the Development Team. Facilitation and removing impediments serves a
team in achieving the best productivity possible.

Question 23 of 30

The Product Backlog is ordered by:

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Risk, where safer items are at the top, and riskier items are at the bottom.

B) Whatever is deemed most appropriate by the Product Owner.

  C) Size, where small items are at the top and large items are at the bottom.
https://www.classmarker.com/online-test/results/ 12/16
1/21/2020 Finished.

  D) Least valuable items at the top to most valuable at the bottom.

  E) Items are randomly arranged.

Feedback
The Product Owner decides what makes the most sense to optimize the value of the work being done by the
Development Team.

Question 24 of 30

Which events are time-boxed according to the Scrum Guide?

(choose the best three answers)

Correct answer: C) E) F)
You chose: C) E) F)
Note: This question displayed answer options in random order when taking this Test.

  A) Design Sprint.
  B) Release Retrospective.
C) Sprint Review.
  D) Release Testing.
E) Daily Scrum.
F) The Sprint.
  G) Sprint Testing.

Feedback
The Scrum Guide states that all Scrum Events are time-boxed. The Sprint - 1 month or less, Sprint Planning -
maximum 8 hours for a one-month sprint, Daily Scrum - 15-minutes, Sprint Review - maximum 4 hours for a
one-month sprint, and the Sprint Retrospective - maximum 3 hours for a one-month sprint.

Question 25 of 30

True or False: Scrum does not have a role called "project manager."

Correct answer: A)
You chose: A)

A) True

https://www.classmarker.com/online-test/results/ 13/16
1/21/2020 Finished.
  B) False

Feedback
A Scrum Team has a Scrum Master, a Product Owner and a Development Team. As a whole they have all
controls needed.

Question 26 of 30

What is the role of Management in Scrum?

(choose the best answer)

Correct answer: C)
You chose: C)
Note: This question displayed answer options in random order when taking this Test.

  A) Monitor the Development Team's productivity.

  B) Identify and remove people that aren't working hard enough.

C) Support the Product Owner with insights and information into high value product and
system capabilities. Support the Scrum Master to cause organizational change that fosters
empiricism, self-organization, bottom-up intelligence, and intelligent release of software.
  D) Continually monitor staffing levels of the Development Team.

Feedback
Management has no active role in the actual product development through Scrum. However, management
external to the Scrum team is incredibly important in setting the vision and strategy to guide the overall
direction of the organization.

Question 27 of 30

True or False: When multiple teams work together on the same product, each team should
maintain a separate Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
https://www.classmarker.com/online-test/results/ 14/16
1/21/2020 Finished.
Products have one Product Backlog, regardless of how many teams are used. Any other setup makes it difficult
for the Development Team to determine what it should work on.

Question 28 of 30

The Development Team should have all the skills needed to:

(choose the best answer)

Correct answer: B)
You chose: B)
Note: This question displayed answer options in random order when taking this Test.

  A) Complete the project as estimated when the date and cost are committed to the Product
Owner.
B) Turn the Product Backlog items it selects into an increment of potentially releasable
product functionality.
  C) Do all of the development work, except for specialized testing that requires additional tools
and environments.

Feedback
The Development Team consists of professionals who do the work of delivering a potentially releasable
Increment of "Done" product at the end of each Sprint. Development Teams are cross-functional, with all of the
skills as a team necessary to create a product Increment.

Question 29 of 30

True or False:  The Scrum Team should choose at least one high priority process improvement,
identified during the Sprint Retrospective, and place it in the Product Backlog.

Correct answer: B)
You chose: B)

  A) True

B) False

Feedback
False, to ensure continuous improvement, the Sprint Backlog rather than the Product Backlog includes at least
one high priority process improvement identified in the previous Sprint Retrospective meeting.

https://www.classmarker.com/online-test/results/ 15/16
1/21/2020 Finished.

Question 30 of 30

The length of a Sprint should be:

(choose the best answer)

Correct answer: D)
You chose: D)

  A) Short enough to keep the business risk acceptable to the Product Owner.

  B) Short enough to be able to synchronize the development work with other business events.

  C) No more than one month.

D) All of these answers are correct.

Feedback
All of these choices are appropriate considerations in determining the length of a Sprint.

https://www.classmarker.com/online-test/results/ 16/16

Das könnte Ihnen auch gefallen