ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

1. You work in a team that develops a mobile application for food ordering. In the current iteration the team decided to implement the payment functionality.

Which of the following activities is a part of test analysis?

Select ONE option.

2 / 40

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

Select ONE option.

3 / 40

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

Select ONE option.

4 / 40

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

Select ONE option.

5 / 40

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

Select ONE option.

6 / 40

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

Select ONE option.

7 / 40

7. Which of the following test activities are MOST likely to involve the application of boundary value analysis and equivalence partitioning?

Select TWO options.

8 / 40

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

Select ONE option.

9 / 40

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

Select ONE option.

10 / 40

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

Select ONE option.

11 / 40

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

12 / 40

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

Select ONE option.

13 / 40

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

14 / 40

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

15 / 40

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

Select ONE option.

16 / 40

16. Which TWO of the following options are the exit criteria for testing a system?

Select TWO options.

17 / 40

17. Consider the following testware.

Which test activity produces this testware as an output?

Select ONE option.

18 / 40

18. Which of the following is NOT true regarding the test pyramid?

Select ONE option.

19 / 40

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

20 / 40

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

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

22. Which of the following statements about the value of static testing is CORRECT?

Select ONE option.

23 / 40

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

24 / 40

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

Select ONE option.

25 / 40

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

26 / 40

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

Select ONE option.

27 / 40

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

Select ONE option.

28 / 40

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

29 / 40

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

Select ONE options.

30 / 40

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

Select ONE option.

31 / 40

31. Which of the following BEST describes the concept behind error guessing?

Select ONE option.

32 / 40

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

33 / 40

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

34 / 40

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

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 a typical test objective?

Select ONE option.

37 / 40

37. A wine storage system uses a control device that measures the wine cell temperature T (measured in °C, rounded to the nearest degree) and alarms the user if it deviates from the optimal value of 12, according to the following rules:

• if T = 12, the system says, “optimal temperature”

• if T < 12, the system says, “temperature is too low!”

• if T > 12, the system says, “temperature is too high!”

You want to use the 3-point boundary value analysis (BVA) to verify the behavior of the control device. A test input is a temperature in °C provided by the device.

What is the MINIMAL set of test inputs that achieves 100% of the desired coverage?

Select ONE option.

38 / 40

38. Given the following review types:

1. Technical review
2. Informal review
3. Inspection
4. Walkthrough

And the following descriptions:

A. Includes objectives such as gaining consensus, generating new ideas, and motivating authors to improve
B. Includes objectives such as educating reviewers, gaining consensus, generating new ideas and detecting potential defects
C. The main objective is detecting potential defects and it requires metrics collection to support process improvement
D. The main objective is detecting potential defects and it generates no formal documented output

Which of the following BEST matches the review types and the descriptions?

Select ONE option.

39 / 40

39. During a risk analysis the following risk was identified and assessed:

• Risk: Response time is too long to generate a report
• Risk likelihood: medium; risk impact: high
• Response to risk:

o An independent test team performs performance testing during system testing
o A selected sample of end users performs alpha and beta acceptance testing before the release

What measure is proposed to be taken in response to this analyzed risk?

Select ONE option.

40 / 40

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

Select ONE options.

0%

Scroll to top