ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

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

Select ONE option.

2 / 40

2. Which of the following activities in the test process makes the MOST use of test progress reports?

Select ONE option.

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. In your project there has been a delay in the release of a brand-new application and test execution started late, but you have very detailed domain knowledge and good analytical skills. The full list of requirements has not yet been shared with the team, but management is asking for some test results to be presented.

Which test technique fits BEST in this situation?

Select ONE option.

5 / 40

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

6 / 40

6. You are designing test cases based on the following decision table.

So far you have designed the following test cases:

• TC1: 19-year-old, unregistered man with no experience; expected result: category A
• TC2: 65-year-old, unregistered woman with 5 years of experience; expected result: category B
• TC3: 66-year-old, registered man with no experience; expected result: category C
• TC4: 65-year-old, registered woman with 4 years of experience; expected result:
category D

Which of the following test cases, when added to the existing set of test cases, will increase the decision table coverage?

Select ONE option.

7 / 40

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

8 / 40

8. Consider the following user story:

As an Editor
I want to review content before it is published
so that I can assure the grammar is correct

and its acceptance criteria:

• The user can log in to the content management system with "Editor" role
• The editor can view existing content pages
• The editor can edit the page content
• The editor can add markup comments
• The editor can save changes
• The editor can reassign to the "content owner" role to make updates

Which of the following is the BEST example of an ATDD test for this user story?

Select ONE option.

9 / 40

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

10 / 40

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

Select ONE option.

11 / 40

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

Select ONE option.

12 / 40

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

13 / 40

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

Select ONE option.

14 / 40

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

15 / 40

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

Select ONE option.

16 / 40

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

17 / 40

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

Select ONE option.

18 / 40

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

19 / 40

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

20 / 40

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

Select ONE option.

21 / 40

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

22 / 40

22. Your test suite S for a program P achieves 100% statement coverage. It consists of three test cases, each of which achieves 50% statement coverage.

Which of the following statements is CORRECT?

Select ONE option.

23 / 40

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

Select ONE option.

24 / 40

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

Select ONE option.

25 / 40

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

Select ONE option.

26 / 40

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

27 / 40

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

Select ONE option.

28 / 40

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

Select ONE option.

29 / 40

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

Select ONE option.

30 / 40

30. Why does white-box testing facilitate defect detection even when the software specification is vague, outdated or incomplete?

Select ONE option.

31 / 40

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

Select ONE option.

32 / 40

32. You are testing a form that verifies the correctness of the length of the password given as input. The form accepts a password with the correct length and rejects a password that is too short or too long. The password length is correct if it has between 6 and 12 characters inclusive. Otherwise, it is considered incorrect.

At first, the form is empty (password length = 0). You apply boundary value analysis to the “password length” variable.

Your set of test cases achieves 100% 2-value boundary value coverage. The team decided that due to the high risk of this component, test cases should be added to ensure 100% 3-value boundary value coverage.

Which additional password lengths should be tested to achieve this?

Select ONE option.

33 / 40

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

Select ONE option.

34 / 40

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

Select ONE option.

35 / 40

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

36 / 40

36. Which test activity involves working with test data requirements, test conditions, test environment requirements and test cases?

Select ONE option.

37 / 40

37. Which of the following is a good testing practice that applies to all software development lifecycles?

Select ONE option.

38 / 40

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

Select ONE options.

39 / 40

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

Select ONE option.

40 / 40

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

Select ONE option.

0%

Scroll to top