ISTQB Learning

Test your knowledge

0%
13
Created on By Admin

Exam 5 - 75 minutes

1 / 40

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

Select ONE option.

2 / 40

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

Select ONE option.

3 / 40

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

Select ONE option.

4 / 40

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

5 / 40

5. Your team analyzes the following user story in order to define the acceptance criteria:

As a registered customer, I want to be able to view my previous orders on the company's website, so that I can keep track of my purchases.

Which of the following test cases will NOT be relevant for this user story?

Select ONE option.

6 / 40

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

7 / 40

7. Which of the following is an example of a defect that can be found by static testing but NOT by dynamic testing?

Select ONE option.

8 / 40

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

Select ONE option.

9 / 40

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

Select ONE option.

10 / 40

10. Which of the following are product risks?

Select TWO options.

11 / 40

11. Which collaborative user story writing practice enables the team to achieve a collective understanding of what needs to be delivered?

Select ONE option.

12 / 40

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

13 / 40

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

Select ONE option.

14 / 40

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

Select ONE option.

15 / 40

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

16 / 40

16. Which types of failures (1-4) fit which test levels (A-D) BEST?

1. Failures in system behavior as it deviates from the user’s business needs
2. Failures in communication between components
3. Failures in logic in a module
4. Failures in not correctly implemented business rules

A. Component testing
B. Component integration testing
C. System testing
D. Acceptance testing

Select ONE option.

17 / 40

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

Select ONE option.

18 / 40

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

19 / 40

19. At the beginning of each iteration, the team estimates the amount of work (in person-days) they will need to complete during the iteration. Let E(n) be the estimated amount of work for iteration n, and let A(n) be the actual amount of work done in iteration n. From the third iteration, the team uses the following estimation model based on extrapolation:

 

 

The graph shows the estimated and actual amount of work for the first four iterations.

What is the estimated amount of work for iteration #5?

Select ONE option.

20 / 40

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

Select ONE option.

21 / 40

21. Which of the following is NOT a valid purpose for a test report?

Select ONE options.

22 / 40

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

Select ONE option.

23 / 40

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

24 / 40

24. You are preparing a test execution schedule for executing seven test cases TC 1 to TC 7.

The following figure includes the priorities of these test cases (1=highest priority, 3 = lowest priority).

The figure also shows the dependencies between test cases using arrows. For instance, the arrow from TC 4 to TC 5 means that TC 5 can only be executed if TC 4 was previously executed.

Which test case should be executed sixth?

Select ONE option.

25 / 40

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

Select ONE option.

26 / 40

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

Select TWO options.

27 / 40

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

28 / 40

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

Select ONE option.

29 / 40

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

Select ONE option.

30 / 40

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

31 / 40

31. Which of the following pieces of information contained in a test progress report is the LEAST useful for business representatives?

Select ONE option.

32 / 40

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

Select ONE option.

33 / 40

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

Select ONE option.

34 / 40

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

35 / 40

35. The following list contains risks that have been identified for a new software product to be developed:

i. Management moves two experienced testers to another project
ii. The system does not comply with functional safety standards
iii. System response time exceeds user requirements
iv. Stakeholders have inaccurate expectations
v. Disabled people have problems when using the system

Which of them are project risks?

Select ONE option.

36 / 40

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

Select ONE option.

37 / 40

37. Which of the following is MOST likely to be an example of a tester using a generic skill when testing?

Select ONE option.

38 / 40

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

Select ONE option.

39 / 40

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

40 / 40

40. You have just started designing test cases for the following user story.

In all test cases the precondition is as follows: there are only two products available, products A and B. Product A costs $100 and product B costs $110.

Which of the following is the BEST example of a test case for this user story?

Select ONE option.

0%

Scroll to top