ISTQB Learning

Test your knowledge

0%
30
Created on By Admin

Exam 5

1 / 40

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

2 / 40

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

Select ONE option.

3 / 40

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

Select ONE option.

4 / 40

4. A phone ringing in a neighboring cubicle distracts a programmer causing him to improperly program the logic that checks the upper boundary of an input variable. Later, during system testing, a tester notices that this input field accepts invalid input values.

Which of the following correctly describes an incorrectly coded upper bound?

Select ONE option.

5 / 40

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

6 / 40

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

• There is the role of a scribe
• The main purpose is to evaluate quality
• The meeting is led by the author of the work product
• There is individual preparation
• A review report is produced

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

Select ONE option.

7 / 40

7. Given the following risks:

1. Ineffective loop implementation causes long system responses
2. Consumers change their preferences
3. Flooding of the server room
4. Patients above a certain age receive inaccurate reports

And the following mitigation activities:

A. Risk acceptance
B. Performance testing
C. Using boundary value analysis as the test technique
D. Risk transfer

Which of the following BEST matches the risks with the mitigation activities?

Select ONE option.

8 / 40

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

Select ONE option.

9 / 40

9. You are testing a mobile application that allows customers to access and manage their bank accounts. You are running a test suite that involves evaluating each screen, and each field on each screen, against a general list of user interface best practices derived from a popular book on the topic that maximizes attractiveness, ease-of-use, and accessibility for such applications. Which of the following options BEST categorizes the test technique you are using?

Select ONE option.

10 / 40

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

Select ONE option.

11 / 40

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

12 / 40

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

13 / 40

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

14 / 40

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

Select ONE option.

15 / 40

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

Select TWO options.

16 / 40

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

Select ONE option.

17 / 40

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

Select ONE option.

18 / 40

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

Select ONE option.

19 / 40

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

Select ONE option.

20 / 40

20. Which TWO of the following options are common metrics used for reporting on the quality level of the test object?

Select TWO options.

21 / 40

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

Select ONE option.

22 / 40

22. Which of the following is NOT an example of the shift left approach?

Select ONE option.

23 / 40

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

24 / 40

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

Select TWO options.

25 / 40

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

26 / 40

26. Tools from which of the following categories help with the organization of test cases, detected defects and configuration management?

 

Select ONE option.

27 / 40

27. Customers of the TestWash car wash chain have cards with a record of the number of washes they have bought so far. The initial value is 0. After entering the car wash, the system increases the number on the card by one. This value represents the number of the current wash. Based on this number the system decides what discount the customer is entitled to.

For every tenth wash the system gives a 10% discount, and for every twentieth wash, the system gives a further 40% discount (i.e., a 50% discount in total).

Which of the following sets of input data (understood as the numbers of the current wash) achieves the highest equivalence partition coverage?

Select ONE option.

28 / 40

28. Which of the following BEST describe the collaborative approach to user story writing?

Select ONE option.

29 / 40

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

Select ONE option.

30 / 40

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

Select ONE option.

31 / 40

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

 

Select ONE option.

32 / 40

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

Select ONE option.

33 / 40

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

Select ONE option.

34 / 40

34. Given the following test tasks:

1. Derive test cases from test conditions
2. Identify reusable testware
3. Organize test cases into test procedures
4. Evaluate test basis and test object

And the following test activities:

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

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

Select ONE option.

35 / 40

35. You are testing a web application that allows users to SEARCH for products, VIEW product details, ADD products to a shopping cart, and place an ORDER.
You have prepared the following five test cases, which you want to execute according to their priorities:

TC1: SEARCH product A Priority: medium

TC2: VIEW product A details Priority: low

TC3: ADD product B to a shopping cart Priority: medium

TC4: ADD product C to a shopping cart Priority: high

TC5: place an ORDER Priority: high

You also identified the following logical dependencies between test cases:

• SEARCH functionality must be tested before VIEW functionality can be tested, as product details rely on search functionality.
• VIEW functionality must be tested before ADD functionality, as adding products relies on the availability of accurate product details.
• ADD functionality must be tested before ORDER functionality, as placing an order relies on the availability of accurate shopping cart information.

Which test case should be executed as the fourth one?

Select ONE option.

36 / 40

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

What do X and Y represent in this formula?

Select ONE option.

37 / 40

37. Which of the following is an example of why testing is necessary?

Select ONE option.

38 / 40

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

Select ONE option.

39 / 40

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

40 / 40

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

0%

Scroll to top