ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

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

2 / 40

2. Which of the following is NOT true for white-box testing?

Select ONE option.

3 / 40

3. You were given a task to analyze and fix causes of failures in a new system to be released.

Which activity are you performing?

Select ONE option.

4 / 40

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

5 / 40

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

Select ONE option.

6 / 40

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

Select ONE option.

7 / 40

7. Given the following risks:

1. Ineffective loop implementation causes long system responses
2. Consumers change their preferences
3. Flooding of the server room
4. Patients above a certain age receive inaccurate reports

And the following mitigation activities:

A. Risk acceptance
B. Performance testing
C. Using boundary value analysis as the test technique
D. Risk transfer

Which of the following BEST matches the risks with the mitigation activities?

Select ONE option.

8 / 40

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

9 / 40

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

10 / 40

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

11 / 40

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

Select ONE option.

12 / 40

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

Select ONE option.

13 / 40

13. Which of the following BEST define EXIT criteria in a testing project?

Select TWO options.

14 / 40

14. Which of the following BEST describes the way acceptance criteria can be documented?

Select ONE option.

15 / 40

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

Select ONE option.

16 / 40

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

Select ONE option.

17 / 40

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

Select ONE option.

18 / 40

18. Which of the following is MOST likely to be a challenge encountered when implementing DevOps?

Select ONE option.

19 / 40

19. What task may management take on during a formal review?

Select ONE option.

20 / 40

20. You are designing test cases based on the following state transition diagram:

What is the MINIMUM number of test cases required to achieve 100% valid transitions coverage?

Select ONE option.

21 / 40

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

22 / 40

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

Select ONE option.

23 / 40

23. Which of the following statements about branch testing is CORRECT?

Select ONE option.

24 / 40

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

Select ONE option.

25 / 40

25. Which of the following factors (i-v) have SIGNIFICANT influence on the test process?

i. The SDLC
ii. The number of defects detected in previous projects
iii. The identified product risks
iv. New regulatory requirements forcing formal white-box testing
v. The test environment setup

Select ONE option.

26 / 40

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

Select ONE option.

27 / 40

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

Select ONE option.

28 / 40

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

29 / 40

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

Select ONE option.

30 / 40

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

Select TWO options.

31 / 40

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

32 / 40

32. Which of the following is the BEST example of how traceability supports testing?

Select ONE option.

33 / 40

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

34 / 40

34. You are a member of a test team located in North America, developing a product for a client located in Europe. The team is agile and follows the DevOps approach and uses a continuous integration/continuous delivery pipeline.

Which of the following is the LEAST effective way to communicate test progress to the customer?

Select ONE option.

35 / 40

35. You received the following defect report from the developers stating that the anomaly described in this test report is not reproducible.

Application hangs up
2022-May-03 – John Doe – Rejected
The application hangs up after entering “Test input: $ä” in the Name field on the new user creation screen. Tried to log off, log in with test_admin01 account, same issue. Tried with other test admin accounts, same issue. No error message received; log (see attached) contains fatal error notification. Based on the test case TC-1305, the application should accept the provided input and create the user. Please fix with high priority, this feature is related to REQ-0012, which is a critical new business requirement.

What critical information is MISSING from this test report that would have been useful for the developers?

Select ONE option.

36 / 40

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

Select ONE option.

37 / 40

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

Select ONE option.

38 / 40

38. You are testing a mobile application that allows customers to access and manage their bank accounts. You are running a test suite that involves evaluating each screen, and each field on each screen, against a general list of user interface best practices derived from a popular book on the topic that maximizes attractiveness, ease-of-use, and accessibility for such applications. Which of the following options BEST categorizes the test technique you are using?

Select ONE option.

39 / 40

39. You are using acceptance test-driven development and designing test cases based on the following user story:

Which test case is the MOST reasonable one to test AC3?

Select ONE option.

40 / 40

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

0%

Scroll to top