if u want to test an application which takes a data value
between 0 and 59 and if u choose 55 ,what type of testing
it is
a) System testing
b) error guessing
c) Black box
d) None
Answer Posted / sbm
may be it is none becounse i think it is equivalence
partitioning
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
explain end to end scenario's for online Money transfer in Banking Domain?
Do you know explain security testing?
What is Initial Configuration?
hai im finished software testing course im technicaly strong but yet now no opportunities come to me.if any opportunities please send to my mail id my mail di is sumathi11685@gmail.com
i m a fresher working in healthcare industry. here we hve no tool for testing. how i ll do manual testing?plz suggest anyone me urgently... i knw to write test case bt i dont knw where to write n how to execute it manually
How to test a stored procedure?
Explain the exactly meaning of test case?
Explain the ramp testing?
Do you write test plan and test case?
test cases for friend finder system using gps?
Suppose a job should be executed for every two hours? Write test case for this?
What is the state testing?
Can anybody help me out to write test cases for booking train ticket online???
How can we write a good test case?
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