An e-commerce site accepts credit cards for processing the payment. The payment processing form has a field for the amount of money to be deducted. The minimum amount of money that can be processed is $10. The credit cards have a limit of $5,000 (Five Thousand). Assume that only integers can be accepted as inputs. Which of the following set of boundary values you will choose for EFFICIENT testing for the amount of money that can be spent?
Boundary value analysis involves testing at the boundaries between partitions. The most efficient boundary values to test are those at the edge of the input ranges:
Just below the minimum value (9)
At the minimum value (10)
Just above the minimum value (11)
Just below the maximum value (4999)
At the maximum value (5000)
Just above the maximum value (5001)
Testing these values ensures that the program handles the boundaries correctly, covering both valid and invalid input scenarios.
Top of Form
Bottom of Form
Match the Work Product with the category it belongs to:
Work Product:
1. Risk register
2. Risk information
3. Test cases
4. Test conditions
Category of work products:
A . Test planning work products
B . Test analysis work products.
C . Test design work products
D . Test monitoring and control work products
Risk register is a test planning work product as it documents identified risks and their mitigation strategies.
Risk information falls under test monitoring and control work products as it involves ongoing evaluation and reporting of risks.
Test cases are part of test design work products as they are derived from test conditions and designed to execute the testing scenarios.
Test conditions belong to test analysis work products as they define the items or events of a system that are to be tested.
In which of the following test documents would you expect to find test exit criteria described9
The criteria for evaluating test completion, such as the percentage of test cases executed, the percentage of test coverage achieved, the number and severity of defects found and fixed, the quality and reliability of the software product, and the stakeholder satisfaction.
The criteria for evaluating test process improvement, such as the adherence to the test strategy, the efficiency and effectiveness of the testing activities, the lessons learned and best practices identified, and the recommendations for future improvements.
Which of the following statements is true?
Both black-box test techniques and experience-based test techniques can be applied to functional and non-functional testing. Functional testing focuses on what the system does, while non-functional testing examines how the system performs. These techniques provide flexible and effective methods for assessing various aspects of the system.
ISTQB CTFL Syllabus 4.0, Chapter 4.4, page 42: Experience-Based Testing Techniques
Which of the following is a task the Author is responsible for, as part of a typical formal review?
This answer is correct because identifying potential anomalies in the work product under review is one of the tasks the Author is responsible for, as part of a typical formal review. The Author is the person who creates the work product to be reviewed, such as a requirement specification, a design document, or a test case. The Author's tasks include preparing the work product for the review, identifying potential anomalies in the work product, and fixing the anomalies found in the work product after the review.Reference: ISTQB Glossary of Testing Terms v4.0, ISTQB Foundation Level Syllabus v4.0, Section 2.4.2.1