ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

1. Which of the following is LEAST likely to occur as a result of a retrospective?

Select ONE option.

2 / 40

2. Which of the following test activities are MOST likely to involve the application of boundary value analysis and equivalence partitioning?

Select TWO options.

3 / 40

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

Select ONE option.

4 / 40

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

Select ONE option.

5 / 40

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

Select ONE option.

6 / 40

6. What is the relationship between the testing quadrants, test levels and test types?

Select ONE option.

7 / 40

7. You are testing a form that verifies the correctness of the length of the password given as input. The form accepts a password with the correct length and rejects a password that is too short or too long. The password length is correct if it has between 6 and 12 characters inclusive. Otherwise, it is considered incorrect.

At first, the form is empty (password length = 0). You apply boundary value analysis to the “password length” variable.

Your set of test cases achieves 100% 2-value boundary value coverage. The team decided that due to the high risk of this component, test cases should be added to ensure 100% 3-value boundary value coverage.

Which additional password lengths should be tested to achieve this?

Select ONE option.

8 / 40

8. Which of the following is true about exploratory testing?

Select ONE option.

9 / 40

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

10 / 40

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

Select TWO options.

11 / 40

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

Select ONE option.

12 / 40

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

Select ONE option.

13 / 40

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

Select TWO options.

14 / 40

14. Which of the following are advantages of DevOps?

i. Faster product release and faster time to market
ii. Increases the need for repetitive manual testing
iii. Constant availability of executable software
iv. Reduction in the number of regression tests associated with code refactoring
v. Setting up the test automation framework is inexpensive since everything is automated

Select ONE option.

15 / 40

15. Given the following testware:

i. Test completion report
ii. Data held in a database used for test inputs and expected results
iii. The list of elements needed to build the test environment
iv. Documented sequences of test cases in execution order
v. Test cases

Which of the following BEST shows the testware produced as a result of performing test implementation?

Select ONE option.

16 / 40

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

Select ONE option.

17 / 40

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

18 / 40

18. A storage system can store up to three elements and is modeled by the following state transition diagram. The variable N represents the number of currently stored elements.

Which of the following test cases, represented as sequences of events, achieves the highest level of valid transitions coverage?

Select ONE option.

19 / 40

19. You are testing a simplified apartment search form which has only two search criteria:

• floor (with three possible options: ground floor; first floor; second or higher floor)
• garden type (with three possible options: no garden; small garden; large garden)

Only apartments on the ground floor have gardens. The form has a built-in validation mechanism that will not allow you to use the search criteria which violate this rule.

Each test has two input values: floor and garden type. You want to apply equivalence partitioning (EP) to cover each floor and each garden type in your tests.

What is the minimal number of test cases to achieve 100% EP coverage?

Select ONE option

20 / 40

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

Select ONE option.

21 / 40

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

 

Select ONE option.

22 / 40

22. Which of the following is NOT a purpose of a test plan?

Select ONE option.

23 / 40

23. Which of the following activities in the test process makes the MOST use of test progress reports?

Select ONE option.

24 / 40

24. Given the following test tasks:

1. Derive test cases from test conditions
2. Identify reusable testware
3. Organize test cases into test procedures
4. Evaluate test basis and test object

And the following test activities:

A. Test analysis
B. Test design
C. Test implementation
D. Test completion

Which of the following BEST matches the tasks with the activities?

Select ONE option.

25 / 40

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

Select ONE option.

26 / 40

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

Select ONE option.

27 / 40

27. Which of the following are product risks?

Select TWO options.

28 / 40

28. You perform system testing of an e-commerce web application and are provided with the following requirement:

REQ 05-017. If the total cost of purchases exceeds $100, the customer gets a 5% discount on subsequent purchases. Otherwise, the customer does not receive a discount.

Which test techniques will be MOST helpful in designing test cases based on this requirement?

Select ONE option.

29 / 40

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

Select ONE option.

30 / 40

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

Select ONE option.

31 / 40

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

32 / 40

32. You need to update one of the automated test scripts to be in line with a new requirement. Which process indicates that you create a new version of the test script in the test repository?

Select ONE option.

33 / 40

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

Select ONE option.

34 / 40

34. You are designing test cases based on the following state transition diagram:

What is the MINIMUM number of test cases required to achieve 100% valid transitions coverage?

Select ONE option.

35 / 40

35. Which of the following statements about the different testing roles is MOST likely to be CORRECT?

Select ONE option.

36 / 40

36. Tools from which of the following categories help with the organization of test cases, detected defects and configuration management?

 

Select ONE option.

37 / 40

37. Which of the following provides the BEST description of the shift-left approach?

Select ONE option.

38 / 40

38. Consider the following test categories (1-4) and agile testing quadrants (A-D):

1. Usability testing
2. Component testing
3. Functional testing
4. Reliability testing

A. Agile testing quadrant Q1: technology facing, supporting the development team
B. Agile testing quadrant Q2: business facing, supporting the development team
C. Agile testing quadrant Q3: business facing, critique the product
D. Agile testing quadrant Q4: technology facing, critique the product

How do the following test categories map onto the agile testing quadrants?

Select ONE option.

39 / 40

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

40 / 40

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

Select ONE option.

0%

Scroll to top