ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

1. Your team uses the three-point estimation technique to estimate the test effort for a new high-risk feature. The following estimates were made:

• Most optimistic estimation: 2 person-hours
• Most likely estimation: 11 person-hours
• Most pessimistic estimation: 14 person-hours

What is the final estimate?

Select ONE option.

2 / 40

2. How do testers add value to iteration and release planning?

Select ONE option.

3 / 40

3. You run two test cases, T1 and T2, on the same code. Test T1 achieved 40% statement coverage and test T2 achieved 65% statement coverage.

Which of the following sentences must be necessarily true?

Select ONE option.

4 / 40

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

 

Select ONE option.

5 / 40

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

Select ONE option.

6 / 40

6. Which of the following is MOST likely to be a trigger that leads to maintenance testing of a currency exchange system?

Select ONE option.

7 / 40

7. A designer documents a design for a user interface that does not suitably address disabled users because the designer is tired. The programmer implements the user interface in line with the design but as they are working under severe time pressure, they do not include suitable exception handling in their program code for bonus calculations. When the operational system is used, complaints are made by some disabled users about the interface and the company is subsequently fined by the relevant regulatory authority. No one notices that bonus calculations are sometimes incorrect.

Which of the following statements is CORRECT?

Select ONE option.

8 / 40

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

9 / 40

9. Given the following testware:

1. Coverage items
2. Change requests
3. Test execution schedule
4. Prioritized test conditions

And the following test activities

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

Which of the following BEST shows the testware produced by the activities?

Select ONE option.

10 / 40

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

11 / 40

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

Select ONE option.

12 / 40

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

13 / 40

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

Select ONE option.

14 / 40

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

15 / 40

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

16 / 40

16. Which of the following is MOST likely to describe a task performed by someone in a test management role?

Select ONE option.

17 / 40

17. Which item correctly identifies a potential risk of performing test automation?

Select ONE option.

18 / 40

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

19 / 40

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

Select ONE option.

20 / 40

20. W A developer was asked to implement the following business rule:

You design the test cases using 2-value boundary value analysis.

Which of the following sets of test inputs achieves the greatest coverage?

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

Select ONE option.

23 / 40

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

Select ONE option.

24 / 40

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

Select ONE option.

25 / 40

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

Select ONE option.

26 / 40

26. Which of the following is a characteristic of experience-based test techniques?

Select ONE option.

27 / 40

27. Consider the following list:

• Correct input not accepted
• Incorrect input accepted
• Wrong output format
• Division by zero

What test technique is MOST PROBABLY used by the tester who uses this list when performing testing?

Select ONE option.

28 / 40

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

Select ONE option.

29 / 40

29. You are testing a system that calculates the final course grade for a given student.

The final grade is assigned based on the final result, according to the following rules:

• 0 – 50 points: failed
• 51 – 60 points: fair
• 61 – 70 points: satisfactory
• 71 – 80 points: good
• 81 – 90 points: very good
• 91 – 100 points: excellent

You have prepared the following set of test cases:

What is the 2-value Boundary Value Analysis (BVA) coverage for the final result that is achieved with the existing test cases?

Select ONE option.

30 / 40

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

Select ONE option.

31 / 40

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

Select ONE option.

32 / 40

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

33 / 40

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

Select ONE option.

34 / 40

34. Which of the following BEST describes retrospectives?

Select ONE option.

35 / 40

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

36 / 40

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

Select ONE options.

37 / 40

37. Which participant in the review process is responsible for ensuring that the review meetings run effectively and that everyone at the meetings can voice their opinions freely?

Select ONE option.

38 / 40

38. Which of the following is an example of why testing is necessary?

Select ONE option.

39 / 40

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

Select ONE option.

40 / 40

40. Which TWO of the following tasks belong MAINLY to a testing role?

Select TWO options.

0%

Scroll to top