ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

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

2 / 40

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

Select ONE option.

3 / 40

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

Select ONE option.

4 / 40

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

Select ONE option.

5 / 40

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

6 / 40

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

7 / 40

7. Which of the following statements BEST describes the difference between testing and debugging?

Select ONE option.

8 / 40

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

Select ONE option.

9 / 40

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

Select ONE option.

10 / 40

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

11 / 40

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

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 is an advantage of the whole-team approach?

Select ONE option.

14 / 40

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

Select ONE option.

15 / 40

15. Given the following descriptions of review activities:

1. Detected anomalies are deliberated upon, and determinations are reached regarding their status, ownership, and any further steps needed
2. Issues are recorded, and any needed updates are addressed prior to the acceptance of the work product
3. Reviewers employ techniques to come up with suggestions and questions about the work product and to spot anomalies
4. The objective of the review and its schedule are established to ensure a focused and efficient review
5. Participants are provided with access to the item being reviewed

Which of the following is the CORRECT sequence in the review process of the activities that correspond to the descriptions?

Select ONE option.

16 / 40

16. The table shows the traceability matrix from test cases to requirements. “X” means that a given test case covers the corresponding requirement.

You want to prioritize the test cases following the additional coverage prioritization technique.

You execute all four test cases.

Which test case should be executed as the LAST one?

Select ONE options.

17 / 40

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

18 / 40

18. The ‘absence-of-defects fallacy’ is one of the principles of testing. Which of the following is an example of addressing this principle in practice?

Select ONE option.

19 / 40

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

20 / 40

20. Which of the following BEST fits as an element of the checklist used in checklist-based testing?

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

Select ONE option.

23 / 40

23. Let the branch coverage metric be defined as BCov = (X / Y) * 100%.

What do X and Y represent in this formula?

Select ONE option.

24 / 40

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

25 / 40

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

26 / 40

26. Which of the following is NOT anticipated by the tester while applying error guessing?

Select ONE option.

27 / 40

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

 

Select ONE option.

28 / 40

28. Which of the following BEST describes an example of how configuration management (CM) supports testing?

Select ONE option.

29 / 40

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

30 / 40

30. Given the following descriptions:

1. Support workflow tracking
2. Facilitate communication
3. Virtual machines
4. Support reviews

And the following test tool categories:

A. Static testing tools
B. Tools supporting scalability and deployment standardization
C. DevOps tools
D. Collaboration tools

Which of the following BEST matches the descriptions and categories?

Explanation / Rationale

31 / 40

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

32 / 40

32. Which of the following statements BEST describes the difference between decision table testing and branch testing?

Select ONE option.

33 / 40

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

Select ONE option.

34 / 40

34. At the beginning of each iteration, the team estimates the amount of work (in person-days) they will need to complete during the iteration. Let E(n) be the estimated amount of work for iteration n, and let A(n) be the actual amount of work done in iteration n. From the third iteration, the team uses the following estimation model based on extrapolation:

 

 

The graph shows the estimated and actual amount of work for the first four iterations.

What is the estimated amount of work for iteration #5?

Select ONE option.

35 / 40

35. Consider the following defect report for a Book Lending System.

Which of the following is MOST likely to help the developer reproduce the failure quickly?

Select ONE options.

36 / 40

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

37 / 40

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

Select ONE option.

38 / 40

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

Select ONE option.

39 / 40

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

Select ONE option.

40 / 40

40. Which of the following statements about formal reviews is TRUE?

Select ONE option.

0%

Scroll to top