Automation Testing (7699)
Manual Testing (7121)
QA Concepts (917)
Mobile Testing (238)
Test Cases (630)
Test Documents Reporting (59)
Database Testing (90)
Behavior Driven Development (BDD) (103)
Testing AllOther (1138) Can you tell me what is boundary value analysis and Equivalence partitioning, and error guessing with examples
5 11964integration testing is followed by a)unit testing b) system testing c) acceptance testing d) regression testing
3 8130diff b/w waterfall model & spiral model?
APIIT, BBD, QQ, Rift Valley Institute of Science and Technology RVIST, Wipro,
14 66708
I have an UI issue "please fill out this field" pop up in firefox browser keeps scrolling with the page is it valid???
how much it is necessary that if u r a sqa engineer then ur programming should be strong or either u have only concepts of it but u r not a good programmer.If the person is not a good programmer then do they are able to make their carrer in this field of qa and do it has good scope for them being not a good programmer?
how to compare two bitmaps( 1. clients requirement & 2. Designed by dev) in qtp 8.2 wann clear steps
Explain me how can we capture screenshots in selenium?
What is positive testing?
'configuration related errors' in testing means what?
What is the modular approach of scripting?
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.
Mention how validation activities should be conducted?
How do you identify an object using selenium?
What is dynamic analysis?
write test cases for hospitality management system
What difference do you make between soft vs. Hard to say in selenium?
What are the factors affecting a manual testing project and what are the ways to overcome 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