Answer Posted / yogesh bhadane
1.To write a testcase there shud be some specification or
if no document is available then there shud be some source
where the functional knowlegde can be gathered(
person,developer etc)
2. Some source using which test data can be generated.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
write a test case for telephone billing ?
In any Hyderabd institute you can find these word commomly used by faculties ... Yes or no / Right or wrong so funny...
how to write testcase for the output of an program ****0 ***01 **012 *0123 01234
What is the domain testing?
Write a test case for telephone?
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.
How does the size of the OPCODE field limit the number of operations? Give an example to support your explanation?
can you tell me how to write test cases for payments, receipts, inward clearing, outward clearing, A/c statements ?
Explain the functional testing?
What is ramp testing?
Can any tell to create test data for SUM (calculation), Scenario is 0 to 9 digits are available as we see in the calculator, I want to certify that the sum of the two numbers are working fine by providing test data.
Positive and Negative test cases for the speedometer?(minimum 5 each)
Why is it that the boundary value analysis provides good test cases?
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