ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

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

Select ONE option.

2 / 40

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

Select TWO options.

3 / 40

3. You are testing a web application that allows users to SEARCH for products, VIEW product details, ADD products to a shopping cart, and place an ORDER.
You have prepared the following five test cases, which you want to execute according to their priorities:

TC1: SEARCH product A Priority: medium

TC2: VIEW product A details Priority: low

TC3: ADD product B to a shopping cart Priority: medium

TC4: ADD product C to a shopping cart Priority: high

TC5: place an ORDER Priority: high

You also identified the following logical dependencies between test cases:

• SEARCH functionality must be tested before VIEW functionality can be tested, as product details rely on search functionality.
• VIEW functionality must be tested before ADD functionality, as adding products relies on the availability of accurate product details.
• ADD functionality must be tested before ORDER functionality, as placing an order relies on the availability of accurate shopping cart information.

Which test case should be executed as the fourth one?

Select ONE option.

4 / 40

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

Select TWO options.

5 / 40

5. Which of the following is an example of how product risk analysis influences thoroughness and scope of testing?

Select ONE option.

6 / 40

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

7 / 40

7. Given the following descriptions of review activities:

1. Detected anomalies are deliberated upon, and determinations are reached regarding their status, ownership, and any further steps needed
2. Issues are recorded, and any needed updates are addressed prior to the acceptance of the work product
3. Reviewers employ techniques to come up with suggestions and questions about the work product and to spot anomalies
4. The objective of the review and its schedule are established to ensure a focused and efficient review
5. Participants are provided with access to the item being reviewed

Which of the following is the CORRECT sequence in the review process of the activities that correspond to the descriptions?

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. Consider the following part of a test plan.

Testing will be performed using component testing and component integration testing. The regulations require to demonstrate that 100% branch coverage is achieved for each component classified as critical.

Which part of the test plan does this part belong to?

Select ONE option.

10 / 40

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

11 / 40

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

Select ONE option.

12 / 40

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

13 / 40

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

Select ONE option.

14 / 40

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

Select ONE option.

15 / 40

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

Select ONE option.

16 / 40

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

17 / 40

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

18 / 40

18. Which of the following statements is a CORRECT example of the value of traceability?

Select ONE option.

19 / 40

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

Select ONE option.

20 / 40

20. What does the test pyramid model show?

Select ONE option.

21 / 40

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

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

24 / 40

24. Which of the following statements describe a valid test objective?

Select ONE option.

25 / 40

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

26 / 40

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

Select ONE option.

27 / 40

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

Select ONE option.

28 / 40

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

Select ONE option.

29 / 40

29. Which of the following options shows an example of test activities that contribute to success?

Select ONE option.

30 / 40

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

Select ONE option.

31 / 40

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

Select ONE option.

32 / 40

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

33 / 40

33. You are testing a PIN validator, which accepts valid PINs and rejects invalid PINs. A PIN is a sequence of digits. A PIN is valid if it consists of four digits, at least two of which are different. You have identified the following valid equivalence partitions:

Variable: PIN code length

• The partition “length correct” - four-digit PINs
• The partition “length incorrect” - PINs with length other than 4

Variable: Number of different digits

• The partition “number of different digits correct” - PINs with at least two different digits
• The partition “number of different digits incorrect” - PINs with all digits being the same

Which of the following is a MINIMUM set of input test data that covers all identified equivalence partitions?

Select ONE option.

34 / 40

34. Which of the following BEST describes the concept behind error guessing?

Select ONE option.

35 / 40

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

Select ONE option.

36 / 40

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

37 / 40

37. You are testing a user story with three acceptance criteria: AC1, AC2 and AC3. AC1 is covered by test case TC1, AC2 by TC2, and AC3 by TC3. The test execution history had three test runs on three consecutive versions of the software as follows:

Tests are repeated once you are informed that all defects found in the test run are corrected and a new version of the software is available.
Which of the above tests are executed as regression tests?

Select ONE option.

38 / 40

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

Select ONE option.

39 / 40

39. Which of the following is NOT true regarding the test pyramid?

Select ONE option.

40 / 40

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

Select ONE option.

0%

Scroll to top