How do you differentiate the roles of Quality Assurance
Manager and Project
Answer Posted / jagadish
the question is in complete r u preferring project manger or
project.
if project and qa manger then its completly differnt.
if qa manger with pm then pm is the person who is
responsible for the completion of the project with in given
time and with all the things as required (brs and srs
document) he manges ppl to work for this cause.
the qa manger is the persons looks in to the out come of the
project is fit for the business requirements of the project
is 100% done or not with his team of quality engginers.
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Explain the concurrency testing?
how to write a test cases for courier offices?
Explain the state testing?
write test cases for hospitality management system
How to write a test cases for the following Please it is urgent Once user clicks that link Invite Friend page opens up thru which user can do 2 functions - first is to search friends detail(name, mail id) from her address book in other sites (india times, yahoo, gmail and rediff) and second to mail the invite to the selected person/s. User can send invite to multiple person at same time. Searching friends detail in other address books will work like this: - User will input name, email id, pwd etc, select from which site she want to get friends list and then click on Import. - Users address book from other sites will be imported in one shot(first time) to iDiva database. - It will be arranged in alphabetical order(complete list) and mail ids which are already used will be in different color. - User will be able to update her address book by clicking on ""Refresh"" button on the page, which will trigger the process again, and fetch new mail ids.
what is black box system in software development in system analysis and design?
How to write test case for this scenario. The system shall compare the requested name with the Service Member Name field in the database
Explain the scalability testing?
write the testcases for migrating data from one database to another database?
Explain the smoke testing?
How to test Webservices and how can we write test cases for that
How to write test cases for manual testing? What are the main syntex for writing test cases for Junit?
Explain the domain testing?
Explain the load 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