Sample test cases for data conversion(Utility billing system)
What we do when the Requirements are continuously changed?
Write a test cases on a facebook
10 Answers Accenture, CTS, General Electric, Intel, Inventures, Maveric, TCS,
plz tell how to test this: We have to change the password of password field the condition is:The password will expiry after 30 days and that should not allow last 12 similar passwords....
Explain the format of a requirement traceability
How to write test cases for "hotel reservatrion" for ms word? Thanks a lot!
what is not present in the test case? 1>requirment ID 2>test case ID 3>bug ID 4>objective
What is Unit Testing ? What is Integration Testing ? What is acceptance testing ? What is Static testing? What is System testing? What is Load Testing? What is Smoke Testing? What is Soak Testing? What is Scalability Testing? What is Sanity Testing? What is Ramp Testing? What is Monkey Testing? What is Gray Box Testing? What is Functional Testing? What is Glass Box Testing? What is Dynamic Testing? What is Compatibility Testing? What is Concurrency Testing? What is Component Testing? What is Ad Hoc Testing? What is Agile Testing?
Explain the monkey testing?
Define some of the attributes of a test case?
write test cases for hospitality management system
Test cases on uplaoding files
12 Answers GE, HP,
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<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);