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
What is the difference between test scenarios, test cases, and test script?
What is ramp testing?
How would you do " Keeping two folders in sync testing"
Write test cases for 8+4?
Why is it that the boundary value analysis provides good test cases?
Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?
Explain how to develop a test plan and a test case.
Explain the gray box testing?
can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u
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
Sample test cases for data conversion(Utility billing system)
Explain the system testing?
what is black box system in software development in system analysis and design?
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.
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