ISTQB Learning

Test your knowledge

0%
34
Created on By Admin

Exam 5

1 / 40

1. Which of the following statements about DevOps is CORRECT?

Select ONE option.

2 / 40

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

3 / 40

3. Which of the following pieces of information contained in a test progress report is the LEAST useful for business representatives?

Select ONE option.

4 / 40

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

5 / 40

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

Select ONE option.

6 / 40

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

Select ONE option.

7 / 40

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

Select ONE options.

8 / 40

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

Select ONE option.

9 / 40

9. Which of the following statements is CORRECT?

Select ONE option.

10 / 40

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

11 / 40

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

Select ONE option.

12 / 40

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

Select ONE option.

13 / 40

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

Select ONE option.

14 / 40

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

Select ONE option.

15 / 40

15. Which of the following test levels is MOST likely being performed if the testing is focused on validation and is not being performed by testers?

Select ONE option.

16 / 40

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

Select ONE option.

17 / 40

17. Which of the following is true about exploratory testing?

Select ONE option.

18 / 40

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

Select ONE option.

19 / 40

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

Select TWO options.

20 / 40

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

Select ONE option.

21 / 40

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

Select ONE option.

22 / 40

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

23 / 40

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

Select ONE option.

24 / 40

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

25 / 40

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

Select ONE option.

26 / 40

26. You are testing a PIN validator, which accepts valid PINs and rejects invalid PINs. A PIN is a sequence of digits. A PIN is valid if it consists of four digits, at least two of which are different. You have identified the following valid equivalence partitions:

Variable: PIN code length

• The partition “length correct” - four-digit PINs
• The partition “length incorrect” - PINs with length other than 4

Variable: Number of different digits

• The partition “number of different digits correct” - PINs with at least two different digits
• The partition “number of different digits incorrect” - PINs with all digits being the same

Which of the following is a MINIMUM set of input test data that covers all identified equivalence partitions?

Select ONE option.

27 / 40

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

Select ONE option.

28 / 40

28. Your team uses planning poker to estimate the test effort for a newly required feature. There is a rule in your team that if there is no time to reach full agreement and the variation in the results is small, applying rules like “accept the number with the most votes” can be applied.
After two rounds, the consensus was not reached, so the third round was initiated. You can see the test estimation results in the table below.

Which of the following is the BEST example of the next step?

Select ONE option.

29 / 40

29. What is the relationship between the testing quadrants, test levels and test types?

Select ONE option.

30 / 40

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

Select ONE option.

31 / 40

31. You want to estimate the test effort for the new project using estimation based on ratios. You calculate the test-to-development effort ratio using averaged data for both development effort and test effort from four historical projects similar to the new one. The table shows this historical data.

The estimated development effort for the new project is $800,000. What is your estimate of the test effort in this project?

Select ONE option.

32 / 40

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

33 / 40

33. You have been assigned as a tester to a team producing a new system incrementally. You have noticed that no changes have been made to the existing regression test cases for several iterations and no new regression defects were identified. Your manager is happy, but you are not. Which testing principle explains your skepticism?

Select ONE option.

34 / 40

34. You are testing a simplified apartment search form which has only two search criteria:

• floor (with three possible options: ground floor; first floor; second or higher floor)
• garden type (with three possible options: no garden; small garden; large garden)

Only apartments on the ground floor have gardens. The form has a built-in validation mechanism that will not allow you to use the search criteria which violate this rule.

Each test has two input values: floor and garden type. You want to apply equivalence partitioning (EP) to cover each floor and each garden type in your tests.

What is the minimal number of test cases to achieve 100% EP coverage?

Select ONE option

35 / 40

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

Select ONE option.

36 / 40

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

37 / 40

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

38 / 40

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

Select ONE option.

39 / 40

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

40 / 40

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

Select ONE option.

0%

Scroll to top