ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

1. Which of the following statements is CORRECT?

Select ONE option.

2 / 40

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

3 / 40

3. The following is a list of the work products produced in the SDLC.

i. Business requirements
ii. Schedule
iii. Test budget
iv. Third-party executable code
v. User stories and their acceptance criteria

Which of them can be reviewed?

Select ONE option.

4 / 40

4. You perform system testing of an e-commerce web application and are provided with the following requirement:

REQ 05-017. If the total cost of purchases exceeds $100, the customer gets a 5% discount on subsequent purchases. Otherwise, the customer does not receive a discount.

Which test techniques will be MOST helpful in designing test cases based on this requirement?

Select ONE option.

5 / 40

5. Which of the following are advantages of DevOps?

i. Faster product release and faster time to market
ii. Increases the need for repetitive manual testing
iii. Constant availability of executable software
iv. Reduction in the number of regression tests associated with code refactoring
v. Setting up the test automation framework is inexpensive since everything is automated

Select ONE option.

6 / 40

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

7 / 40

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

Select ONE option.

8 / 40

8. You are working on a project to develop a system to analyze driving test results. You have been asked to design test cases based on the following decision table.

What test data will show that there are contradictory rules in the decision table?

Select ONE option.

9 / 40

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

Select ONE option.

10 / 40

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

11 / 40

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

12 / 40

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

Select ONE option.

13 / 40

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

Select ONE option.

14 / 40

14. Tools from which of the following categories help with the organization of test cases, detected defects and configuration management?

 

Select ONE option.

15 / 40

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

Select TWO options.

16 / 40

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

Select ONE option.

17 / 40

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

Select ONE option.

18 / 40

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

Select ONE option.

19 / 40

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

Select ONE option.

20 / 40

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

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

Select ONE option.

23 / 40

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

24 / 40

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

Select ONE option.

25 / 40

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

26 / 40

26. Consider the following defect report for a web-based shopping application:

What is the MOST important information that is missing from this report?

Select ONE option.

27 / 40

27. Customers of the TestWash car wash chain have cards with a record of the number of washes they have bought so far. The initial value is 0. After entering the car wash, the system increases the number on the card by one. This value represents the number of the current wash. Based on this number the system decides what discount the customer is entitled to.

For every tenth wash the system gives a 10% discount, and for every twentieth wash, the system gives a further 40% discount (i.e., a 50% discount in total).

Which of the following sets of input data (understood as the numbers of the current wash) achieves the highest equivalence partition coverage?

Select ONE option.

28 / 40

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

29 / 40

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

30 / 40

30. Consider the following test categories (1-4) and agile testing quadrants (A-D):

1. Usability testing
2. Component testing
3. Functional testing
4. Reliability testing

A. Agile testing quadrant Q1: technology facing, supporting the development team
B. Agile testing quadrant Q2: business facing, supporting the development team
C. Agile testing quadrant Q3: business facing, critique the product
D. Agile testing quadrant Q4: technology facing, critique the product

How do the following test categories map onto the agile testing quadrants?

Select ONE option.

31 / 40

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

Select ONE option.

32 / 40

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

33 / 40

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

34 / 40

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

Select ONE option.

35 / 40

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

Select ONE option.

36 / 40

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

37 / 40

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

Select ONE option.

38 / 40

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

Select ONE option.

39 / 40

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

Select ONE option.

40 / 40

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

Select ONE option.

0%

Scroll to top