ISTQB Learning

Test your knowledge

0%
35
Created on By Admin

Exam 5

1 / 40

1. How can the testing quadrants be beneficial for testing?

Select ONE options.

2 / 40

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

Select ONE option.

3 / 40

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

4 / 40

4. You are testing a sort function that gets a set of numbers as input and returns the same set of numbers sorted in ascending order. The log from the test execution looks as follows.

Which of the following provides the BEST description of the failure that can be used in a defect report?

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 of the following statements describe a valid test objective?

Select ONE option.

7 / 40

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

8 / 40

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

9 / 40

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

Select ONE option.

10 / 40

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

11 / 40

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

Select ONE option.

12 / 40

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

Select ONE option.

13 / 40

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

Select ONE option.

14 / 40

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

Select ONE option.

15 / 40

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

Select ONE option.

16 / 40

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

17 / 40

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

Select TWO options.

18 / 40

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

Select ONE option.

19 / 40

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

Select ONE option.

20 / 40

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

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

Select ONE option.

23 / 40

23. Which of the following is an example of a defect that can be found by static testing but NOT by dynamic testing?

Select ONE option.

24 / 40

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

Select ONE option.

25 / 40

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

26 / 40

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

Select ONE option.

27 / 40

27. Which test activity involves working with test data requirements, test conditions, test environment requirements and test cases?

Select ONE option.

28 / 40

28. For a given risk, its risk level is $1,000 and its risk likelihood is estimated as 50%.

What is the risk impact?

Select ONE options.

29 / 40

29. Which of the following skills (i-v) are the MOST important skills of a tester?

i. Having domain knowledge
ii. Creating a product vision
iii. Being a good team player
iv. Planning and organizing the work of the team
v. Critical thinking

Select ONE option.

30 / 40

30. You are testing a mobile application that allows users to find a nearby restaurant based on the type of food they want to eat. Consider the following list of test cases, priorities (i.e., a smaller number means a higher priority), and dependencies:

Which of the following test cases should be executed as the third one?

Select ONE option.

31 / 40

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

32 / 40

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

33 / 40

33. Which collaborative user story writing practice enables the team to achieve a collective understanding of what needs to be delivered?

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

Select ONE option.

36 / 40

36. Consider the following testware.

Which test activity produces this testware as an output?

Select ONE option.

37 / 40

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

38 / 40

38. You work as a tester in a project on a mobile application for food ordering for one of your clients. The client sent you a list of requirements. One of them, with high priority, says

“The order must be processed in less than 10 seconds in 95% of the cases”.

You created a set of test cases in which a number of random orders were made, the processing time measured, and the test results were checked against the requirements.

What test type did you perform?

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. Which of the following is a factor that contributes to a successful review?

Select ONE option.

0%

Scroll to top