(questions asked in interview)hi every one can any one
please answer to this questions.these questions were asked
in an interview.i have another interview next week . 1.when
the time schedule is tight how will you approch the
testing,and the relese is nearing and we need to finish
testing how can we follow in that case.do we need to exicute
all the test cases or can priortise and leave some to next
relase. 2. when a new feature is added to the existing
application we need to add new test cases but after that do
we need to change all the existing test cases and while
running do we need to exicute entire application test cases
or only the new feature test cases and related new feature
test cases. 3.do you have any situation where you have to
write and exicute the test cases same time, how will you
follow.does it happens in real time. 4.example of bug which
is not reproducible.like tester say that there is bug and
developer say no can some example of such bugs. 5.during
regression testing some times do we need to add new some
additional test cases to test that bug.

Answer Posted / venkat

1. You have to test the major functionalities which has
largest impact on the project.

2.When a new feature is added you have to test all the
dependent modules. If no dependent modules are there then
we have to do 30 to 40% regression testing. If the whole
product has impact because of this feature then you have to
test the whole.

3.In real time it doesn't happens. Once the testcases were
written review will happen, once the review was ok then we
start testing.(Still now I never faced such situation.
Anyone plz correct me If I am wrong).

4.Generally in GUI applications these types of error
occurs. Generally we dont remember what are all we clicked.
In such situations we cant reproduce the bug.

5.No

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ramp testing?

670


What are the test cases for mouse?

851


Explain the component testing?

769


Please can any one tel how to write the test cases for these Requirements:- 1.The applications sends the periodic data 2.The applications sends the alarm data 3.The Application stores the Periodic data and alarm data if it is unable to send 4.the application having the configure through GPRS or SMS

1874


Explain the syntax testing?

679






What is the syntax testing?

688


Can some body help to write possible test cases for a credit card at POS (point of sale)

2335


how to prepare a test case for online restaurant table reservation system. plz give an answer ASAP, email at suja_rvndrn@yahoo.co.in

5166


please tel me how to write test case for search engine to track peoples,when user enter the city,state,zipcode(ex:Kansas city,Missouri,64155)? (note country is already selected as a united states )

3510


Credit card field contains four text boxes. We can validate each textbox separately with conditions but how can we write integrated testcase for all the four?

1849


Can any one please give me a test case for transaction of money thro' mobile phones. I really need it soon. i need the test case in ieee format.please anyone help me.

1997


What is the domain testing?

665


Explain the monkey testing?

670


write test case for button of google page?"i am feeling lucky" if button is not appear on page?

2553


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 { } public RoadNetwork : List { } public RoadNetwork Concatenate(RoadNetwork roads);

1936