ISTQB Learning

Test your knowledge

0%
13
Created on By Admin

Exam 5 - 75 minutes

1 / 40

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

Select ONE option.

2 / 40

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

Select ONE option.

3 / 40

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

Select ONE option.

4 / 40

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

Select ONE option.

5 / 40

5. How can the testing quadrants be beneficial for testing?

Select ONE options.

6 / 40

6. The team wants to estimate the time needed for one tester to execute four test cases for a software component. The team has gathered the following measures of the effort used to execute a single test case:

• Best-case scenario: 1 hour
• Worst-case scenario: 8 hours
• Most likely scenario: 3 hours

Given that the three-point estimation technique is being used, what is the final estimate of the time needed to execute all four test cases?

Select ONE option.

7 / 40

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

Select ONE option.

8 / 40

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

Select ONE option.

9 / 40

9. Your test suite achieved 100% statement coverage. What is the consequence of this fact?

Select ONE option.

10 / 40

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

Select ONE option.

11 / 40

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

12 / 40

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

13 / 40

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

Select ONE option.

14 / 40

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

15 / 40

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

Select ONE option.

16 / 40

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

Select TWO options.

17 / 40

17. For a given risk, its risk level is $1,000 and its risk likelihood is estimated as 50%.

What is the risk impact?

Select ONE options.

18 / 40

18. Which of the following statements about the value of static testing is CORRECT?

Select ONE option.

19 / 40

19. You are testing a sort function that gets a set of numbers as input and returns the same set of numbers sorted in ascending order. The log from the test execution looks as follows.

Which of the following provides the BEST description of the failure that can be used in a defect report?

Select ONE option.

20 / 40

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

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

23 / 40

23. Which of the following tests is MOST likely to be performed as part of functional testing?

Select ONE option.

24 / 40

24. What does the test pyramid model show?

Select ONE option.

25 / 40

25. Which of the following BEST describes retrospectives?

Select ONE option.

26 / 40

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

Select ONE option.

27 / 40

27. Consider the following defect report for a web-based shopping application:

What is the MOST important information that is missing from this report?

Select ONE option.

28 / 40

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

29 / 40

29. Which of the following is an example of how product risk analysis may influence the thoroughness and scope of testing?

Select ONE option.

30 / 40

30. The user reported a software failure. An engineer from the support team asked the user for the software version number where the failure was observed. Based on the version number, the team reassembled all the files that made up the release. This later allowed a developer to perform analysis, find the defect, and fix it.

Which of the following enabled the above activity to be performed by the team?

Select ONE options.

31 / 40

31. Your favorite bicycle daily rental store has just introduced a new Customer Relationship Management system and asked you, one of their most loyal members, to test it.
The implemented features are as follows:

• Anyone can rent a bicycle, but members receive a 20% discount
• However, if the return deadline is missed, the discount is no longer available
• After 15 rentals, members get a gift: a T-Shirt

Decision table describing the implemented features looks as follows:

Based ONLY on the feature description of the Customer Relationship Management system, which of the above rules describes an impossible situation?

 

Select ONE option.

32 / 40

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

33 / 40

33. Which of the following statements BEST describes the difference between testing and debugging?

Select ONE option.

34 / 40

34. Which of the following provides the BEST example of a scenario-oriented acceptance criterion?

Select ONE option.

35 / 40

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

Select ONE option.

36 / 40

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

37 / 40

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

Select ONE option.

38 / 40

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

39 / 40

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

40 / 40

40. Which work product can be used by an agile team to show the amount of work that has been completed and the amount of total work remaining for a given iteration?

Select ONE option.

0%

Scroll to top