Valid ISTQB-CTFL Dumps shared by ExamDiscuss.com for Helping Passing ISTQB-CTFL Exam! ExamDiscuss.com now offer the newest ISTQB-CTFL exam dumps, the ExamDiscuss.com ISTQB-CTFL exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com ISTQB-CTFL dumps with Test Engine here:
A requirement specifies that if the total amount of sales (TAS) made during the year by a corporate seller is 300,000€ or more, the bonus that must be paid to the seller is 100% of a certain amount agreed upon at the beginning of the year. The software contains a fault as it implements this requirement with the decision "IF (TAS = 300,000)" instead of "IF (TAS >= 300.000)". The application of the 3-value boundary value analysis to this problem consists of the following three test cases (TAS is an integer variable): TC1 = 299,999 TC2=300,000 TC=300,001 Which of the following statements is TRUE?
Correct Answer: B
The requirement specifies that a bonus should be paid if the total amount of sales (TAS) made during the year is 300,000€ or more. The software incorrectly implements this requirement with "IF (TAS = 300,000)" instead of "IF (TAS >= 300,000)". Using boundary value analysis (BVA), which is a common technique in software testing, the three test cases provided (TC1 = 299,999, TC2 = 300,000, and TC3 = 300,001) cover the critical boundary values around the condition. * TC1 tests just below the boundary (299,999), * TC2 tests exactly at the boundary (300,000), * TC3 tests just above the boundary (300,001). Since the software incorrectly checks for TAS equal to 300,000, only TC2 will fail because the condition is exactly met and highlights the incorrect implementation of the decision logic.