ISTQB Learning

Test your knowledge

0%
32
Created on By Admin

Exam 5

1 / 40

1. Which of the following is an example of a test-first approach to development?

Select ONE option.

2 / 40

2. Which of the arguments below would you use to convince your manager to organize retrospectives at the end of each release cycle?

Select ONE option.

3 / 40

3. Which of the following BEST define EXIT criteria in a testing project?

Select TWO options.

4 / 40

4. Which of the following is NOT true regarding the test pyramid?

Select ONE option.

5 / 40

5. You are a member of a test team located in North America, developing a product for a client located in Europe. The team is agile and follows the DevOps approach and uses a continuous integration/continuous delivery pipeline.

Which of the following is the LEAST effective way to communicate test progress to the customer?

Select ONE option.

6 / 40

6. Given the following descriptions of review activities:

1. Detected anomalies are deliberated upon, and determinations are reached regarding their status, ownership, and any further steps needed
2. Issues are recorded, and any needed updates are addressed prior to the acceptance of the work product
3. Reviewers employ techniques to come up with suggestions and questions about the work product and to spot anomalies
4. The objective of the review and its schedule are established to ensure a focused and efficient review
5. Participants are provided with access to the item being reviewed

Which of the following is the CORRECT sequence in the review process of the activities that correspond to the descriptions?

Select ONE option.

7 / 40

7. You are testing a temperature control system for a horticultural cold storage facility. The system receives the temperature (in full degrees Celsius) as the input. If the temperature is between 0 and 2 degrees inclusive, the system displays the message “temperature OK”. For lower temperatures, the system displays the message "temperature too low" and for higher temperatures it displays the message “temperature too high”.

Using two-value boundary value analysis, which of the following sets of test inputs provides the highest level of boundary value coverage?

Select ONE option.

8 / 40

8. The system for selling cinema tickets calculates the discount type based on the client’s birth year (BY) and on the current year (CY) as follows:

 

Let D be the difference between CY and BY, that is, D = CY – BY

• If D < 0 then print the error message “birth year cannot be greater than current year”

• If 0 ≤ D < 18 then apply the student discount

• If 18 ≤ D < 65 then apply no discount • If D ≥ 65 then apply the pensioner discount

Your test suite already contains two test cases:

• BY = 1990, CY = 2020, expected result: no discount
• BY = 2030, CY = 2029, expected result: print the error message

Which of the following test data sets should be added to achieve full valid equivalence partitioning coverage for the discount type?

Select TWO options.

9 / 40

9. Which TWO of the following statements provide the BEST rationale for using exploratory testing?

Select TWO options.

10 / 40

10. Let the branch coverage metric be defined as BCov = (X / Y) * 100%.

What do X and Y represent in this formula?

Select ONE option.

11 / 40

11. Which of the following statements BEST describes the acceptance test-driven development (ATDD) approach?

Select ONE option.

12 / 40

12. Which of the following is a typical test objective?

Select ONE option.

13 / 40

13. Which of the following is an example of a test-first approach to development?

Select ONE option.

14 / 40

14. Given the following risks:

1. Ineffective loop implementation causes long system responses
2. Consumers change their preferences
3. Flooding of the server room
4. Patients above a certain age receive inaccurate reports

And the following mitigation activities:

A. Risk acceptance
B. Performance testing
C. Using boundary value analysis as the test technique
D. Risk transfer

Which of the following BEST matches the risks with the mitigation activities?

Select ONE option.

15 / 40

15. Which of the following options shows an example of test activities that contribute to success?

Select ONE option.

16 / 40

16. Which collaborative user story writing practice enables the team to achieve a collective understanding of what needs to be delivered?

Select ONE option.

17 / 40

17. Which of the following is NOT a valid purpose for a test report?

Select ONE options.

18 / 40

18. How can white-box testing be useful in support of black-box testing?

Select ONE option.

19 / 40

19. Which of the following test levels is MOST likely being performed if the testing is focused on validation and is not being performed by testers?

Select ONE option.

20 / 40

20. You were given a task to analyze and fix causes of failures in a new system to be released.

Which activity are you performing?

Select ONE option.

21 / 40

21. Which of the following is NOT an example of how configuration management supports testing?

Select ONE option.

22 / 40

22. According to the testing quadrants model, which of the following falls into quadrant Q1 (“technology facing” and “support the team”)?

Select ONE option.

23 / 40

23. Consider the following user story:

As an Editor
I want to review content before it is published
so that I can assure the grammar is correct

and its acceptance criteria:

• The user can log in to the content management system with "Editor" role
• The editor can view existing content pages
• The editor can edit the page content
• The editor can add markup comments
• The editor can save changes
• The editor can reassign to the "content owner" role to make updates

Which of the following is the BEST example of an ATDD test for this user story?

Select ONE option.

24 / 40

24. Which of the following is MOST likely to be a risk of test automation?

Select ONE options.

25 / 40

25. A phone ringing in a neighboring cubicle distracts a programmer causing him to improperly program the logic that checks the upper boundary of an input variable. Later, during system testing, a tester notices that this input field accepts invalid input values.

Which of the following correctly describes an incorrectly coded upper bound?

Select ONE option.

26 / 40

26. Given the following roles in reviews:

1. Scribe
2. Review leader
3. Facilitator
4. Manager

And the following responsibilities in reviews:

A. Ensures the effective running of review meetings and the setting up a safe review environment
B. Records review information, such as decisions and new anomalies found during the review meeting
C. Decides what is to be reviewed and provides resources, such as staff and time for the review
D. Takes overall responsibility for the review such as organizing when and where the review will take place

Which of the following BEST matches the roles and responsibilities?

Select ONE option.

27 / 40

27. Which of the following is a benefit of early and frequent stakeholder feedback?

Select ONE option.

28 / 40

28. A wine storage system uses a control device that measures the wine cell temperature T (measured in °C, rounded to the nearest degree) and alarms the user if it deviates from the optimal value of 12, according to the following rules:

• if T = 12, the system says, “optimal temperature”

• if T < 12, the system says, “temperature is too low!”

• if T > 12, the system says, “temperature is too high!”

You want to use the 3-point boundary value analysis (BVA) to verify the behavior of the control device. A test input is a temperature in °C provided by the device.

What is the MINIMAL set of test inputs that achieves 100% of the desired coverage?

Select ONE option.

29 / 40

29. Which of these statements is NOT a factor that contributes to successful reviews?

Select ONE option.

30 / 40

30. Which of the following is MOST likely to be a challenge encountered when implementing DevOps?

Select ONE option.

31 / 40

31. Which of the following BEST describes how using checklist-based testing can result in increased coverage?

Select ONE option.

32 / 40

32. Which of the following BEST describes retrospectives?

Select ONE option.

33 / 40

33. Which of the following is an example of a defect that can be found by static testing but NOT by dynamic testing?

Select ONE option.

34 / 40

34. Customers of the TestWash car wash chain have cards with a record of the number of washes they have bought so far. The initial value is 0. After entering the car wash, the system increases the number on the card by one. This value represents the number of the current wash. Based on this number the system decides what discount the customer is entitled to.

For every tenth wash the system gives a 10% discount, and for every twentieth wash, the system gives a further 40% discount (i.e., a 50% discount in total).

Which of the following sets of input data (understood as the numbers of the current wash) achieves the highest equivalence partition coverage?

Select ONE option.

35 / 40

35. You have been assigned as a tester to a team producing a new system incrementally. You have noticed that no changes have been made to the existing regression test cases for several iterations and no new regression defects were identified. Your manager is happy, but you are not. Which testing principle explains your skepticism?

Select ONE option.

36 / 40

36. Which of the following BEST fits as an element of the checklist used in checklist-based testing?

Select ONE option.

37 / 40

37. Which of the following is NOT anticipated by the tester while applying error guessing?

Select ONE option.

38 / 40

38. Which test activity does a data preparation tool support?

Select ONE option.

39 / 40

39. Consider the following defect report for a Book Lending System.

Which of the following is MOST likely to help the developer reproduce the failure quickly?

Select ONE options.

40 / 40

40. Which TWO of the following options are the exit criteria for testing a system?

Select TWO options.

0%

Scroll to top