if account balance less than 5000 for a month ,account
should become in active. if bal greater than 5000 account
should b active. Write test cases for the above scenario
Answers were Sorted based on User's Feedback
Answer / raju
If account balance = 4999 then it should be inactive.
If account balance = 5000 then it should be inactive.
if account balance = 5001 then it should be active.
This is the boundary condition which points the error prone
ares by the developers. If these conditions are passed then
most of the conditions are passed like 4000, 6000
Is This Answer Correct ? | 26 Yes | 2 No |
Answer / leena
Assumptions
balance = 5000 is active*
Days in Months = 30*
negative balance inactivates account*
1. balance = 5000 ->Account active
2. balance = 5001 ->Account active
3. balance = 4999 AND (Currentdate - last transaction date)
<= 30 ->Account active
4. balance = 4999 AND (Currentdate - last transaction date)
> 30 ->Account inactive
5. balance = 0 AND (Currentdate - last transaction date)
<= 30 ->Account active
5. balance = 0 AND (Currentdate - last transaction date)
> 30 ->Account inactive
6. balance < 0 ->Account inactive
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / dayakar
hai friends...
as per my knowledge i found some mistakes Priya's, Raju's
and Ashish Mahabaleshwarkar
Priya wrote in her 2nd step A/C bal is <5000 it is active
but it is inactive.
Raju wrote in her 2nd scenario A/C bal =5000 it is inactive.
I think here account is active.
Ashish wrote A/c balance = 5001, a/c becomes inactive. But
it should be active.
thank you friends. I have made any mistakes please give me
feed back.
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / priya
Test cases
1..chk for a/c balance >5000 (6000) ,then a/c shld be active
2 chk for a/c balance <5000 (4000),then a/c shlb in active.
3.chk for a/c bal is 5000 (5000),then a/c shld be inactive.
4.chk for zero balance,then a/c shld be inactive.
5.if a/c bal is less than 5000,then the a/c holder have to
pay some fee r fine.
6.if the person lost ATM card,then his/her a/c shld be in
active upon his request.
I think these r the possible cases..
Thank you.
Is This Answer Correct ? | 10 Yes | 4 No |
Answer / shakeel
If account balance <= 5000 and (CurrentDate -
lastActivityDate) >= 30 days or 1 month then it should be
inactive.
If account balance >= 5000 then it should be active.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rubi
i feel that no one has checked for the balance amt < 5000
for a month other than sakeel.
- chk for the bal amt > 5000
expected result : acct shd b active
- chk for the bal amt = 5000
expected result : acct shd b active
- chk for the bal amt < 5000 if yes
chk for the days ( current date -last transaction date)
if days >=30 then acct shd b inactive.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / asc
no need for so many cases. Provided that the above is the
only requirement that you have,
A/c balance < 5000, a/c becomes inactive &
A/c balance > 5000, a/c becomes active
should do the job
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / pooja
Here we should apply the BVA.Raju's answer is correct
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / gyan
A/c balance = 4999 a/c becomes inactive
A/c balance = 5000, a/c becomes active
A/c balance = 5001, a/c becomes active
Take any value such as A/c balance < 5000 except 4999 then
a/c becomes inactive
Take A/c balance = 0 then a/c becomes inactive
Take any value such as A/c balance > 5000 except 5001 then
a/c becomes active
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashish mahabaleshwarkar
A/c balance = 4999, a/c becomes inactive &
A/c balance = 5000, a/c becomes active
A/c balance = 5001, a/c becomes inactive &
I think that much combinations are enough to test this
scnario.
Is This Answer Correct ? | 1 Yes | 0 No |
wht are the test cases, we have to write for check box, Anybody can help me. Thanks in advance.
write testcase for sql table? this is the question asked by interviewer?
Pls tell me test cases for pepper grinder
can u say me how many test cases i can get for a user to login and enter password ..please specify in testcase desing template for that
how to write the test cases in excel format
What are the condition when you begin to write test case in the Test Director. Ex.data condition what are the condition can some help me please i how write test cases.
How you will write test cases on DROP DOWN list BOX on GUI
What are semi-random test cases?
write a test case for yahoo compose page?
Can anybody tell test cases for the following condition? In a railway reservation form, 4 types of ticket ranges are there like a) age up to 3, NO TICKET. b) age up to 7, HALF TICKET. c) age up to 60, FULL TICKET. d) age from 61, SENIOR CITIZEN QUOTA. if you enter age into the text box the relevant message should be displayed..... Eg. FULL TICKET.
This was asked to me recently in Microsoft interview How would you do DOS copy command testing
Can test case contains more than 50 steps in single test case?