ISTQB Learning

Test your knowledge

0%
34
Created on By Admin

Exam 5

1 / 40

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

Select ONE option.

2 / 40

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

3 / 40

3. Which participant in the review process is responsible for ensuring that the review meetings run effectively and that everyone at the meetings can voice their opinions freely?

Select ONE option.

4 / 40

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

Select ONE option.

5 / 40

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

Select ONE option.

6 / 40

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

Select TWO options.

7 / 40

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

Select ONE option.

8 / 40

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

9 / 40

9. Which item correctly identifies a potential risk of performing test automation?

Select ONE option.

10 / 40

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

11 / 40

11. Given the following example defects:

i. Two different parts of the design specification disagree due to the complexity of the design
ii. A response time is too long and so makes users lose patience
iii. A path in the code cannot be reached during execution
iv. A variable is declared but never subsequently used in the program
v. The amount of memory needed by the program to generate a report is too high

Which of the following BEST identifies example defects that could be found by static testing (rather than dynamic testing)?

Select ONE option.

12 / 40

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

13 / 40

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

14 / 40

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

15 / 40

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

16 / 40

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

Select ONE option.

17 / 40

17. You test a system whose lifecycle is modeled by the state transition diagram shown below. The system starts in the INIT state and ends its operation in the OFF state.

What is the MINIMAL number of test cases to achieve valid transitions coverage?

Select ONE option.

18 / 40

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

Select ONE option.

19 / 40

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

Select ONE option.

20 / 40

20. Which of the following statements about quality assurance (QA) and/or quality control (QC) is correct?

Select ONE option.

21 / 40

21. Which of the following is true about exploratory testing?

Select ONE option.

22 / 40

22. A phone ringing in a neighboring cubicle distracts a programmer causing him to improperly program the logic that checks the upper boundary of an input variable. Later, during system testing, a tester notices that this input field accepts invalid input values.

Which of the following correctly describes an incorrectly coded upper bound?

Select ONE option.

23 / 40

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

Select ONE option.

24 / 40

24. You want to estimate the test effort for the new project using estimation based on ratios. You calculate the test-to-development effort ratio using averaged data for both development effort and test effort from four historical projects similar to the new one. The table shows this historical data.

The estimated development effort for the new project is $800,000. What is your estimate of the test effort in this project?

Select ONE option.

25 / 40

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

26 / 40

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

Select ONE option.

27 / 40

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

Select ONE option.

28 / 40

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

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. Which of the following is a good testing practice that applies to all software development lifecycles?

Select ONE option.

31 / 40

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

Select ONE option.

32 / 40

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

Select ONE option.

33 / 40

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

Select ONE option.

34 / 40

34. You are applying state transition testing to the hotel room reservation system modeled by the following state transition table, with 4 states and 5 different events:

Assuming all test cases start in the ‘Requesting’ state, which of the following test cases, represented as sequences of events, achieves the highest valid transitions coverage?

Select ONE option.

35 / 40

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

36 / 40

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

37 / 40

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

Select ONE option.

38 / 40

38. Which of the following is MOST likely to be performed as part of system testing?

Select ONE option.

39 / 40

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

Select ONE option.

40 / 40

40. How is the whole team approach present in the interactions between testers and business representatives?

Select ONE option.

0%

Scroll to top