ISTQB Learning

Test your knowledge

0%
35
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 following BEST define EXIT criteria in a testing project?

Select TWO options.

3 / 40

3. 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.

4 / 40

4. 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.

5 / 40

5. Consider the following acceptance criteria for a user story written from the perspective of an online store owner.

Given that the user is logged in and on the homepage,
When the user clicks on the "Add Item" button,
Then the "Create Item" form should appear,
And the user should be able to input a name and price for the new item.

In what format is this acceptance criteria written?

Select ONE option.

6 / 40

6. Which of the following is MOST likely to impact how testing is performed for a given test object?

Select ONE option.

7 / 40

7. The following is a list of the work products produced in the SDLC.

i. Business requirements
ii. Schedule
iii. Test budget
iv. Third-party executable code
v. User stories and their acceptance criteria

Which of them can be reviewed?

Select ONE option.

8 / 40

8. Given the following benefits and drawbacks of the independence of testing:

i. The testers work in a different location from the developers
ii. Testers question the assumptions programmers make while writing code
iii. A confrontational dynamic has been established between testers and developers
iv. Developers have convinced themselves that testers are mostly accountable for quality
v. Testers have different biases than those held by the developers

Which are MOST likely to be considered benefits?

Select ONE option.

9 / 40

9. Which of the following statements about the independence of testing is CORRECT?

Select ONE option.

10 / 40

10. Which of the following is NOT an example of the shift left approach?

Select ONE option.

11 / 40

11. You are testing a mobile application that allows customers to access and manage their bank accounts. You are running a test suite that involves evaluating each screen, and each field on each screen, against a general list of user interface best practices derived from a popular book on the topic that maximizes attractiveness, ease-of-use, and accessibility for such applications. Which of the following options BEST categorizes the test technique you are using?

Select ONE option.

12 / 40

12. Which of the following is MOST likely to be a benefit of test automation?

 

Select ONE option.

13 / 40

13. Which of the following are product risks?

Select TWO options.

14 / 40

14. Which of the following statements BEST describes the difference between decision table testing and branch testing?

Select ONE option.

15 / 40

15. One of the ‘principles of testing’ states that exhaustive testing is impossible. Which of the following is an example of addressing this principle in practice?

Select ONE option.

16 / 40

16. Given the following task descriptions:

1. The quality characteristics to be evaluated and the exit criteria are selected
2. Everyone has access to the work product
3. Anomalies are identified in the work product
4. Anomalies are discussed

And the following review activities

A. Individual review
B. Review initiation
C. Planning
D. Communication and analysis

Which of the following BEST matches the task descriptions and activities?

Select ONE option.

17 / 40

17. At the beginning of each iteration, the team estimates the amount of work (in person-days) they will need to complete during the iteration. Let E(n) be the estimated amount of work for iteration n, and let A(n) be the actual amount of work done in iteration n. From the third iteration, the team uses the following estimation model based on extrapolation:

 

 

The graph shows the estimated and actual amount of work for the first four iterations.

What is the estimated amount of work for iteration #5?

Select ONE option.

18 / 40

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

Select ONE option.

19 / 40

19. Which of the following statements about the chosen software development lifecycle is CORRECT?

Select ONE option.

20 / 40

20. Which of the following CANNOT be examined by static testing?

Select ONE option.

21 / 40

21. Which of the following is an advantage of the whole team approach?

Select ONE option.

22 / 40

22. During a risk analysis the following risk was identified and assessed:

• Risk: Response time is too long to generate a report
• Risk likelihood: medium; risk impact: high
• Response to risk:

o An independent test team performs performance testing during system testing
o A selected sample of end users performs alpha and beta acceptance testing before the release

What measure is proposed to be taken in response to this analyzed risk?

Select ONE option.

23 / 40

23. Which of the following BEST describes retrospectives?

Select ONE option.

24 / 40

24. Why does white-box testing facilitate defect detection even when the software specification is vague, outdated or incomplete?

Select ONE option.

25 / 40

25. Which of the following BEST describe the collaborative approach to user story writing?

Select ONE option.

26 / 40

26. Given the following descriptions:

1. Support workflow tracking
2. Facilitate communication
3. Virtual machines
4. Support reviews

And the following test tool categories:

A. Static testing tools
B. Tools supporting scalability and deployment standardization
C. DevOps tools
D. Collaboration tools

Which of the following BEST matches the descriptions and categories?

Explanation / Rationale

27 / 40

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

Select ONE option.

28 / 40

28. Which of the following is the BEST example of how traceability supports testing?

Select ONE option.

29 / 40

29. How is the whole team approach present in the interactions between testers and business representatives?

Select ONE option.

30 / 40

30. What is the MAIN difference between black-box test techniques and experience-based test techniques?

Select ONE option.

31 / 40

31. Which of the following is a product quality metric?

Select ONE option.

32 / 40

32. Your team follows the process that uses the DevOps delivery pipeline. The first three steps of this process are:

(1) Code development
(2) Submit code into a version control system and merge it into the “test” branch
(3) Perform component testing for the submitted code

Which of the following is BEST suited to be the entry criterion for step (2) of this pipeline?

Select ONE option.

33 / 40

33. Consider the following rule: “for every SDLC activity there is a corresponding test activity”. In which SDLC models does this rule hold?

Select ONE option.

34 / 40

34. Which of the following is NOT a benefit of static testing?

Select ONE option.

35 / 40

35. You work as a tester in a project on a mobile application for food ordering for one of your clients. The client sent you a list of requirements. One of them, with high priority, says

“The order must be processed in less than 10 seconds in 95% of the cases”.

You created a set of test cases in which a number of random orders were made, the processing time measured, and the test results were checked against the requirements.

What test type did you perform?

Select ONE option.

36 / 40

36. 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.

37 / 40

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

Select ONE option.

38 / 40

38. Which of the following is a good testing practice that applies to all software development lifecycles?

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. The following decision table contains the rules for determining the risk of atherosclerosis.

You designed the test cases with the following test input data:

TC1: Cholesterol = 125 mg/dl Blood pressure = 141 mm Hg
TC2: Cholesterol = 200 mg/dl Blood pressure = 201 mm Hg
TC3: Cholesterol = 124 mg/dl Blood pressure = 201 mm Hg
TC4: Cholesterol = 109 mg/dl Blood pressure = 200 mm Hg
TC5: Cholesterol = 201 mg/dl Blood pressure = 140 mm Hg

What is the decision table coverage achieved by these test cases?

Select ONE option.

0%

Scroll to top