Question: 1 . Boundary Testing for Age Input: A system accepts ages between 1 8 and 6 0 . Identify the boundary values and test cases

1. Boundary Testing for Age Input:
A system accepts ages between 18 and 60. Identify the boundary values and test cases for
the input validation.
2. Boundary Analysis for Loan Application:
A bank application requires income between 25,000 and 1,00,000 to approve loans.
Generate test cases using boundary values.
3. Boundary Values for Array Index:
An array allows indices from 0 to 49. Identify the boundary test cases to ensure correct
index handling.
4. Boundary Testing for Tax Calculation:
A tax slab is defined for incomes:
o Up to 2,50,000: No tax
o 2,50,001 to 5,00,000: 5% tax
o 5,00,001 to 10,00,000: 20% tax
o Above 10,00,000: 30% tax
Determine boundary test cases for tax calculation.
5. Boundary Testing for Password Length:
A password validation system accepts passwords between 8 and 16 characters long.
Generate boundary value test cases for this scenario.
ATM System Test Case Design (Questions 610)
1. Boundary Testing for ATM Withdrawal:
The ATM allows withdrawals between 500 and 20,000 in multiples of 500. Identify
boundary values and prepare test cases.
Test Case Template:
Test Case ID Input Amount () Expected Output Result
TC1500 Successful withdrawal Pass/Fail
TC220,000 Successful withdrawal Pass/Fail
TC3499 Error: Invalid amount Pass/Fail
TC420,001 Error: Exceeds limit Pass/Fail
2. Login Test Case:
The ATM system requires a valid 4-digit PIN for authentication. Prepare test cases for
the login process, including valid, invalid, and boundary conditions.
Test Case Template:
Test Case ID Input PIN Expected Output Result
TC51234 Login successful Pass/Fail
TC6123 Error: Invalid PIN length Pass/Fail
TC70000 Login successful Pass/Fail
TC89999 Login successful Pass/Fail
3. Balance Inquiry Test Case:
Design test cases for checking account balance when the balance ranges from 0 to
1,00,000.
Test Case Template:
Test Case ID Current Balance () Expected Output Result
TC90 Display: 0 Pass/Fail
TC101,00,000 Display: 1,00,000 Pass/Fail
TC11-1 Error: Invalid balance Pass/Fail
4. Transaction Limit Test Case:
An account has a daily withdrawal limit of 50,000. Prepare test cases for transaction
validation.Test Case Template:
Test Case
ID
Amount Withdrawn
Today ()
Withdrawal
Attempt () Expected Output Result
TC1245,0005,000 Successful
withdrawal Pass/Fail
TC1350,0001,000 Error: Limit
exceeded Pass/Fail
5. Invalid Card Test Case:
Prepare test cases for scenarios where an invalid or blocked card is used.Test Case
Template:
Test Case ID Card Status Expected Output Result
TC14 Blocked Error: Card blocked Pass/Fail
TC15 Invalid number Error: Invalid card number Pass/Fail

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!