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
Answer Posted / 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 |
Post New Answer View All Answers
What is explain security testing?
What are the detailed test cases for Vacations Rental websites (Admin,Traveler,Rental owner)?
what is the technology used in financial applications?
What is the logic testing?
how to write testcase for the output of an program ****0 ***01 **012 *0123 01234
write the testcases for migrating data from one database to another database?
What is the state testing?
Can you list down a few characteristics of a test case?
Write a test case on online shopping website? (please tell me the format how to write in MS excel,if u have any sample than attach it.)
how to write a test cases for Quick links like Feedback/Suggestions Advertise with us Contribute Invite a Friend FAQs Make HomePage RSS Feed Buzz Words Email Privacy Statement Terms & Conditions Copyright Disclaimer Download Forgot Password
Do you write test plan and test case?
how to write test cases in interview exam like one website it contain a/c # text box, current bill amount text box,sms offer,calling offer,internet these 3 are list boxes and remindmelater,continue these 2 are buttons. and qu is like 1.user doesn't have any dues from past 90 days,2.whose bill amount >= rs2000 from past 6 months. use this 2qu write testcases.
What is test cases for mobile phone ?
write test cases for flipkart.
Roads concatenation Problem
Consider we have some GIS (Geo Information System) operating
over some road network. Each road represented as array of
two-dimensional geographical points. Road network is a set
of roads.
System has function called Concatenate(). This function
takes raw road network and should return optimized road
network. Optimization lies in concatenating roads with
matching start or end points, i.e. if road AB end point
matches road BC start point, then optimized network should
contain concatenated road AC. Optimized network shouldn’t
contain two roads which can be concatenated.
Your task is to suggest set of test cases for Concatenate()
function in order to make sure it works correctly.
public interface IPoint
{
double Lat { get; }
double Lon { get; }
}
public Road : List