Answer Posted / raj_rex
I think the orle of the QA in devloment project is to
prepare guidelines about the process & standard that will
be followed srictly throught the project.and then time to
time varify that is applying or not.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
how to write test cases for smart meter for gas and electricty
What is business validation test case?
Write a test case of login window?
Some test case for mambo cms (only basically: graphic, function...) Thanks for answer.
What are the test cases for mouse?
hai we need to get some data from a logfiles and populate into database .to check this we need to write test cases .how to write test case for this scenario tell me as functional and stress testing differ
Can any one send me the Sample sanity Test Cases??? Mail id:veerabhadrudu.p@gmail.com
Explain the smoke testing?
what is the technology used in financial applications?
How to write test cases for "open file dialog box" for ms word? Thanks a lot!
how to make test case for anolog voice logger?
Why is it that the boundary value analysis provides good test cases?
If for any software product, if the customers more often us few functions, and rarely use few othere functionality. what a tester can expect more deffects can be found, in what area, where the functionality frequently used OR where rarly used?
What is the state testing?
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