Writing Test Cases is Verification or Validation?
Executing Test Cases is Verification or Validation?

Answer Posted / vijendra.jois

As Verification mean conformance of the system to the
specification and Validation mean functionality defined in
the requirement is intended behavior ofthe product it is
done actual testing (dynamic analysis) so executing test
case is validation

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to generate test cases for 'replace a string' method?

916


What is the difference between test scenarios, test cases, and test script?

712


What are the detailed test cases for Vacations Rental websites (Admin,Traveler,Rental owner)?

2498


What is Initial Configuration?

1958


Suppose a job should be executed for every two hours? Write test case for this?

709






i am preparing for interviews in real time job what test cases we have to prepare please explain with example?

1908


Can someone tell me the test cases to test the password for with following scenario: 1. Password should be minimum 6 chars and maximum 8 chars. 2. Password should consist one uppercase letter 3. Password should consist of one numeric 4. Password should consist of one special character.

1685


Test a function that reads a file into memory, say ReadFileToMemory( FILE * pFile, BYTE * pMem, DWORD numBytes)

2713


How does the size of the OPCODE field limit the number of operations? Give an example to support your explanation?

1956


how to write test cases in interview exam like one website it contain a/c # text box, current bill amount text box,sms offer,calling offer,internet these 3 are list boxes and remindmelater,continue these 2 are buttons. and qu is like 1.user doesn't have any dues from past 90 days,2.whose bill amount >= rs2000 from past 6 months. use this 2qu write testcases.

2130


Write the test case for a login page?

733


can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u

1674


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

8534


This was asked to me recently in Microsoft interview How would you do DOS copy command testing

1924


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);

1944