ISTQB Learning

Test your knowledge

0%
13
Created on By Admin

Exam 5 - 75 minutes

1 / 40

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

Select ONE option.

2 / 40

2. Given the following test tool categories:

i. Collaboration tools
ii. DevOps tools
iii. Management tools
iv. Non-functional testing tools
v. Test design and implementation tools

Tools from which of the categories are MOST likely to facilitate test execution?

Select ONE options.

3 / 40

3. High-level test conditions are being used by testers to generate test cases and execute tests. Even though the test conditions remain the same, the test cases are varied each time. Which of the following ‘principles of testing’ is being addressed through the variation of test cases?

Select ONE option.

4 / 40

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

Select ONE option.

5 / 40

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

Select ONE option.

6 / 40

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

Select ONE option.

7 / 40

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

8 / 40

8. Your organization’s test strategy suggests that once a system is going to be retired, data migration shall be tested. As part of what test type is this testing MOST likely to be performed?

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

11 / 40

11. Which of the following is a factor that contributes to a successful review?

Select ONE option.

12 / 40

12. Your team uses planning poker to estimate the test effort for a newly required feature. There is a rule in your team that if there is no time to reach full agreement and the variation in the results is small, applying rules like “accept the number with the most votes” can be applied.
After two rounds, the consensus was not reached, so the third round was initiated. You can see the test estimation results in the table below.

Which of the following is the BEST example of the next step?

Select ONE option.

13 / 40

13. Decide which of the following statements (i-v) are true for static testing.

i. Abnormal external behaviors are easier to identify with this testing
ii. Discrepancies from a coding standard are easier to find with this testing
iii. It identifies failures caused by defects when the software is run
iv. Its test objective is to identify defects as early as possible
v. Missing coverage for critical security requirements is easier to find and fix

Select ONE option.

14 / 40

14. You are using acceptance test-driven development and designing test cases based on the following user story:

Which test case is the MOST reasonable one to test AC3?

Select ONE option.

15 / 40

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

16 / 40

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

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

19 / 40

19. Which of the following statements about DevOps is CORRECT?

Select ONE option.

20 / 40

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

21 / 40

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

22 / 40

22. Which of the following is NOT true for white-box testing?

Select ONE option.

23 / 40

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

24 / 40

24. Which of the following are product risks?

Select TWO options.

25 / 40

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

Select ONE option.

26 / 40

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

Select TWO options.

27 / 40

27. Which of the following BEST explains a benefit of independence of testing?

Select ONE option.

28 / 40

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

29 / 40

29. You are working as a tester in the team that follows the V-model. The choice of software development lifecycle (SDLC) model impacts the timing of testing, which of the following statement is NOT true?

Select ONE option.

30 / 40

30. Which of the following statements about quality assurance (QA) and/or quality control (QC) is correct?

Select ONE option.

31 / 40

31. The ‘absence-of-defects fallacy’ is one of the principles of testing. Which of the following is an example of addressing this principle in practice?

Select ONE option.

32 / 40

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

Select ONE option.

33 / 40

33. Which of the following statements about formal reviews is TRUE?

Select ONE option.

34 / 40

34. You are working on a project to develop a system to analyze driving test results. You have been asked to design test cases based on the following decision table.

What test data will show that there are contradictory rules in the decision table?

Select ONE option.

35 / 40

35. Which of the following is MOST likely to be performed as part of system testing?

Select ONE option.

36 / 40

36. What does the test pyramid model show?

Select ONE option.

37 / 40

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

Select ONE option.

38 / 40

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

Select ONE option.

39 / 40

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

40 / 40

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

0%

Scroll to top