Consider an Agile project aimed at developing a test management tool. This tool allows Test Managers to generate progress reports for test analysis, test design and test execution phases in traditional projects. Consider the following user story of this Agile project:
"As a Test Manager who is looking at a progress report, I want to be able to print this progress report, so that I can keep a hard copy for my daily records."
For this user story the following acceptance criterion is defined:
"Given that I am a Test Manager looking at a progress report,
When I click the 'Print' button,
Then the progress report should be printed"
Based only on the given information, which of the following would you expect most likely to be true?
A Scrum team is performing quality risk analysis during planning for the first iteration. User stories have associated risk items with levels determined by impact and likelihood. For multiple risk items, the user story’s risk is the average of individual risk levels.
Which of the following statements would you expect most likely to be true?
You have been asked to execute an exploratory testing session on Park & Ride system. The test charter has been titled as “Buy a bus ticket”. As a result, a number of defects were reported, the titles of which are listed below.
Which defect is out of scope for the given test charter?
Which of the following statements best describes how development and testing activities are integrated in Agile projects?
Which of the following describes a direct benefit of early and frequent feedback associated with the adoption of continuous integration?
An Agile team uses a burndown chart and a task board to track progress within each iteration. In the burndown chart, the x-axis represents the days of iteration, while the y-axis represents the story points. The task board uses columns: "To Do", "Ongoing", "Done".
A user story for the current iteration has 20 story points and 4 tasks (T1, T2, T3, T4). At the end of Day 5, all are in "Ongoing". At the end of Day 6, T1 and T2 move to "Done", while T3 and T4 remain "Ongoing".
Which of the following statements would you expect most likely to be true at the end of Day 6?
Which ONE of the following is an example of a typical “Business-oriented work product”?
Which of the following allows a developer to define accurate unit tests focused on business needs?
Consider an online application that allows registered users to pay the annual car tax based on the vehicle’s engine power in kW. Given the following user story:
"As a customer I need the online application to calculate the annual car tax amount that I need to pay for my car:
* If the power of the vehicle is less than 20 kW, then the annual car tax is free
* If the power of the vehicle is more or equal than 20 kW but less or equal than 150 kW, then the annual car tax is 250 Euros
* If the power of the vehicle is more than 150 kW, then the annual car tax is 750 Euros"
What is the MOST suitable use of a black-box test design technique for this user story?
Which of the following statements about the benefits of the Agile processes promoting early and frequent feedback is NOT true?
In a sprint planning, the product owner presents a user story written on a card. The team starts having a discussion with the product owner to get an understanding on how the software should work.
The user story written on the card is:
"As a customer, I want to subscribe to the mailing list so that I can receive the latest deal in an email."
By applying the 3C concept, which ONE of the following statements is CORRECT?
Which agile development approach incorporates the following practices:
* a project is divided into iterations called sprints
* each sprint results in a potentially releasable/shippable product?
Which two of the following statements are CORRECT with regards to test automation on agile projects?
1) Every test developed for past iterations is kept and executed as part of a regression suite for each new release of code.
2) It would be very difficult to ensure high quality in an agile project without test automation.
3) Automated acceptance tests are run regularly as part of the continuous integration full system build.
4) Automated regression suites are only run for the final release of code.
5) In agile projects, the results from automated acceptance tests provide feedback on the overall product quality.
Consider an Agile team using a development practice with these steps:
Write a failing test for a small piece of code
Make the test pass by implementing minimal code
Refactor the code
Repeat the process with additional small functionality
Which one of the following testing quadrants would the tests produced with this practice be part of?
Which of the following statements is FALSE regarding early and frequent feedback?