ISTQB Learning

Test your knowledge

0%
2
Created on By Admin

2018v3.1 - Exam 4

1 / 40

1. A speed control and reporting system has the following characteristics:

• If you drive 50 km/h or less, nothing will happen.
• If you drive faster than 50 km/h, but no more than 55 km/h, you will be warned.
• If you drive faster than 55 km/h but not more than 60 km/h, you will be fined.
• If you drive faster than 60 km/h, your driving license will be suspended.
• The speed in km/h is available to the system as an integer value.

Which would be the most likely set of values (km/h) identified by applying the boundary value analysis, where only the values on the boundaries of the equivalence classes are selected?

Select ONE option.

2 / 40

2. Which of the following statements BEST describes how test cases are derived from a use case?

Select ONE option.

3 / 40

3. Programmers often write and execute unit tests against code which they have written. During this self-testing activity, which of the following is a tester mindset that programmers should adopt to perform this unit testing effectively?

Select ONE option.

4 / 40

4. An employee’s bonus is to be calculated. It cannot be negative, but it can be calculated down to zero. The bonus is based on the length of employment:

• Less than or equal to 2 years
• More than 2 years but less than 5 years
• 5 to 10 years inclusively
• Longer than 10 years

What is the minimum number of test cases required to cover all valid equivalence partitions for calculating the bonus?

Select ONE option.

5 / 40

5. Which of the following statements BEST compares the purposes of confirmation testing and regression testing?

Select ONE option.

6 / 40

6. Which of the following metrics would be MOST useful to monitor during test execution?

Select ONE option.

7 / 40

7. Which of the following is an example of a task that can be carried out as part of the test process?

Select ONE option.

8 / 40

8. A tester participated in a discussion about proposed database structure. The tester identified a potential performance problem related to certain common user searches. This possible problem was explained to the development team. Which of the following is a testing contribution to success that BEST matches this situation?

Select ONE option.

9 / 40

9. Which of the following is MOST likely to be an example of a PRODUCT risk?

Select ONE option.

10 / 40

10. Given the following test activities and tasks:

A. Test design
B. Test implementation
C. Test execution
D. Test completion

1. Entering change requests for open defect reports
2. Identifying test data to support the test cases
3. Prioritizing test procedures and creating test data
4. Analyzing discrepancies to determine their cause

Which of the following BEST matches the activities with the tasks?

Select ONE option.

11 / 40

11. Which of the following activities is part of the main activity "test analysis" in the test process?

Select ONE option.

12 / 40

12. Which one of the following answers describes a test condition?

Select ONE option.

13 / 40

13. Which of the following statements about test types and test levels is CORRECT?

Select ONE option.

14 / 40

14. You are engaged in planning a test effort for a new mobile banking application. As part of estimation, you first meet with the proposed testers and others on the project. The team is well-coordinated and has already worked on similar projects. To verify the resulting estimate, you then refer to some industry averages for testing effort and costs on similar projects, published by a reputable consultant.

Which statement accurately describes your estimation approach?

Select ONE option.

15 / 40

15. In a formal review, what is the role name for the participant who runs an inspection meeting?

Select ONE option.

16 / 40

16. You are defining the process for carrying out product risk analysis as part of each iteration on an Agile project. Which of the following is the proper place to document this process in a test plan?

Select ONE option.

17 / 40

17. Which one of the following is MOST likely to be a benefit of test execution tools?

Select ONE option.

18 / 40

18. Which of the following can affect and be part of the (initial) test planning?

Select ONE options.

19 / 40

19. Consider the following types of defects that a test level might focus on:

a) Defects in separately testable modules or objects
b) Not focused on identifying defects
c) Defects in interfaces and interactions
d) Defects in the whole test object

Which of the following list correctly matches test levels from the Foundation syllabus with the defect focus options given above?

Select ONE option.

20 / 40

20. During an Agile development effort, a product owner discovers a previously unknown regulatory requirement that applies to most of the user stories within a particular epic. The user stories are updated to provide for the necessary changes in software behavior. The programmers on the team are modifying the code appropriately. As a tester on the team, what types of tests will you run?

Select ONE option.

21 / 40

21. Which of the following statements is true?

Select ONE option.

22 / 40

22. Consider the following decision table for the portion of an online airline reservation system that allows frequent flyers to redeem points for reward travel:

Suppose that there are two equivalence partitions for the condition where “Account/password okay” is not true, one where the account is invalid and another where the account is valid, but the password is invalid. Suppose that there is only one equivalence partition corresponding to the condition where “Account/password okay” is true, where both the account and password are valid.

If you want to design tests to cover the equivalence partitions for “Account/password okay” and also for this portion of the decision table, what is the minimum number of tests required?

Select ONE option.

23 / 40

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

Select ONE option.

24 / 40

24. You are testing a new version of software for a coffee machine. The machine can prepare different types of coffee based on four categories. i.e., coffee size, sugar, milk, and syrup. The criteria are as follows:

• Coffee size (small, medium, large)
• Sugar (none, 1 unit, 2 units, 3 units, 4 units)
• Milk (yes or no)
• Coffee flavor syrup (no syrup, caramel, hazelnut, vanilla)

Now you are writing a defect report with the following information:

• Title: Low coffee temperature.
• Short summary: When you select coffee with milk, the time for preparing coffee is too long and the temperature of the beverage is too low (less than 40 °C).
• Expected result: The temperature of coffee should be standard (about 75 °C).
• Degree of risk: Medium
• Priority: Normal

What valuable information was omitted in the above defect report?

Select ONE option.

25 / 40

25. What is decision coverage?

Select ONE option.

26 / 40

26. Which of the following is a defect rather than a root cause in a fitness tracker?

Select ONE option.

27 / 40

27. The reviews being used in your organization have the following attributes:

• There is a role of a scribe
• The purpose is to detect potential defects
• The review meeting is led by the author
• Reviewers find potential defects by individual review
• A review report is produced

Which of the following review types is MOST likely being used?

Select ONE option.

28 / 40

28. For which of the following situations is exploratory testing suitable?

Select ONE option.

29 / 40

29. Which statement about the relationship between statement coverage and decision coverage is true?

Select ONE option.

30 / 40

30. You are testing an e-commerce system that sells cooking supplies such as spices, flour, and other items in bulk. The units in which the items are sold are either grams (for spices and other expensive items) or kilograms (for flour and other inexpensive items). Regardless of the units, the smallest valid order amount is 0.5 units (e.g., half a gram of cardamom pods) and the largest valid order amount is 25.0 units (e.g., 25 kilograms of sugar). The precision of the units’ field is 0.1 units.

Which of the following is a MINIMAL set of input values that cover the equivalence partitions for this field?

Select ONE option.

31 / 40

31. Which one of the following is NOT included in a test summary report?

Select ONE option.

32 / 40

32. Which activities are carried out within the planning of a formal review?

Select ONE option.

33 / 40

33. What is quality?

Select ONE option.

34 / 40

34. Which of the following descriptions of decision coverage is CORRECT?

Select ONE option.

35 / 40

35. Which of the following qualities is MORE likely to be found in a tester’s mindset rather than in a developer’s?

Select ONE option.

36 / 40

36. Which of the following statements about the given state transition diagram and table of test cases is TRUE?

Select ONE option.

37 / 40

37. Which one of the following test tools is mostly suitable for developers rather than testers?

Select ONE option.

38 / 40

38. What is checklist-based testing?

Select ONE option.

39 / 40

39. Consider the following list of undesirable outcomes that could occur on a mobile app development effort:

A. Incorrect totals on screens
B. Change to acceptance criteria during acceptance testing
C. Users find the soft keyboard too hard to use with your app
D. System responds too slowly to user input during search string entry
E. Testers not allowed to report test results in daily standup meetings

Which of the following properly classifies these outcomes as project and product risks?

Select ONE option.

40 / 40

40. Which of the following provides the definition of the term test case?

Select ONE option.

0%

Scroll to top