Answer Posted / vijay chander
QA plays vital role in development companies. Though it is
a cost affeceting factor, it is always advisable to go for
QA implementation in all the phases fo "SDLC" with out any
bias. Incase any phase is not monitored properly then there
may be a chance for imperfection of the task due to lack of
monotirng. That affect the original budget of the company.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Write a test case for a car, which has been, recently launch in a market to check its durability, fuel efficiency and its optimum speed.
How to write test case for this scenario. If the Zip Code field is populated, the system shall compare the zip code value entered to the zip code value in the Family Individual Information Tab
"search"test cases on Linkedin website and how will you write test cases on it?
how to write test case on gmail for TO field in compose page? only for the particular field.what will different type of user do with it like student,doctor?
Explain the concurrency testing?
Explain the sanity testing?
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?
Explain the concept of semi-random test cases?
If I have to write the test cases for any report & there is date box.then may I have to write only select date or have to write all steps required for selecting date
Explain how to develop a test plan and a test case.
150 integration testing scenarios for gmail
can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u
Write a test case of login window?
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.
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