Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

test cases for calculator ,this should accept integer form
+99 to -99(perform addition operator).need to raise defects

Answer Posted / anitha

1. Verify whether it is accepting the integer from +99 to -99 by using boundary value analysis. like giving input +98, +99, +100, -98, -99, -100.
2.It should not accept the integer value +98 and -100 since it is accepting the integer from +99 to -99.
2.Verify the results whether it perform the addition operation correctly and the results are correct.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between test scenarios, test cases, and test script?

1399


What is ramp testing?

1213


How would you do " Keeping two folders in sync testing"

2522


Write test cases for 8+4?

1248


Why is it that the boundary value analysis provides good test cases?

1333


Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?

1303


Explain how to develop a test plan and a test case.

1202


Explain the gray box testing?

1240


can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u

2186


How to write test case for this scenario. The system shall allow for a wild card search for the last name with a minimum of one character

1991


Sample test cases for data conversion(Utility billing system)

7573


Explain the system testing?

1250


what is black box system in software development in system analysis and design?

2241


How to write test cases for the following scenario: The system shall limit the search result display to 200 records. Do we need to write test data for it. How do we create a test data for it.

2401


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 { } public RoadNetwork : List { } public RoadNetwork Concatenate(RoadNetwork roads);

2520