ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

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

Select ONE option.

2 / 40

2. Your team follows the process that uses the DevOps delivery pipeline. The first three steps of this process are:

(1) Code development
(2) Submit code into a version control system and merge it into the “test” branch
(3) Perform component testing for the submitted code

Which of the following is BEST suited to be the entry criterion for step (2) of this pipeline?

Select ONE option.

3 / 40

3. Given the following roles in reviews:

1. Scribe
2. Review leader
3. Facilitator
4. Manager

And the following responsibilities in reviews:

A. Ensures the effective running of review meetings and the setting up a safe review environment
B. Records review information, such as decisions and new anomalies found during the review meeting
C. Decides what is to be reviewed and provides resources, such as staff and time for the review
D. Takes overall responsibility for the review such as organizing when and where the review will take place

Which of the following BEST matches the roles and responsibilities?

Select ONE option.

4 / 40

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

5 / 40

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

6 / 40

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

Select ONE option.

7 / 40

7. Which of the following is MOST likely to be a risk of test automation?

Select ONE options.

8 / 40

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

9 / 40

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

Select ONE option.

10 / 40

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

Select ONE option.

11 / 40

11. Given the following benefits and drawbacks of the independence of testing:

i. The testers work in a different location from the developers
ii. Testers question the assumptions programmers make while writing code
iii. A confrontational dynamic has been established between testers and developers
iv. Developers have convinced themselves that testers are mostly accountable for quality
v. Testers have different biases than those held by the developers

Which are MOST likely to be considered benefits?

Select ONE option.

12 / 40

12. In many software organizations the test department is called the Quality Assurance (QA) department. Is this sentence correct or not and why?

Select ONE option.

13 / 40

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

Select ONE option.

14 / 40

14. During risk analysis the team considered the following risk: “The system allows too high a discount for a customer”. The team estimated the risk impact to be very high.

What can one say about the risk likelihood?

Select ONE option.

15 / 40

15. The navigation system software has been updated due to it suggesting routes that break traffic laws, such as driving the wrong way down one-way streets. Which of the following BEST describes the testing that will be performed?

Select ONE option.

16 / 40

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

Select ONE option.

17 / 40

17. Which TWO of the following options are common metrics used for reporting on the quality level of the test object?

Select TWO options.

18 / 40

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

19 / 40

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

Select ONE option.

20 / 40

20. Given the following test tasks:

1. Derive test cases from test conditions
2. Identify reusable testware
3. Organize test cases into test procedures
4. Evaluate test basis and test object

And the following test activities:

A. Test analysis
B. Test design
C. Test implementation
D. Test completion

Which of the following BEST matches the tasks with the activities?

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

Select ONE option.

23 / 40

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

Select ONE option.

24 / 40

24. Which of the following is MOST likely to impact how testing is performed for a given test object?

Select ONE option.

25 / 40

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

Select ONE option.

26 / 40

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

Select TWO options.

27 / 40

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

Select ONE option.

28 / 40

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

Select ONE option.

29 / 40

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

Select ONE option.

30 / 40

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

Select ONE option.

31 / 40

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

Select ONE option.

32 / 40

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

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 is NOT a benefit of static testing?

Select ONE option.

35 / 40

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

36 / 40

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

Select ONE options.

37 / 40

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

38 / 40

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

39 / 40

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

Select ONE option.

40 / 40

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

Select ONE option.

0%

Scroll to top