Write the 3 TestCases to prove tht it is a softdrinkbottle
or not.
Answer Posted / nish
1.check if it has any name mentioned as Soft drink on the
bottle.
2.check the contins and the flovor of the bottle
3.make sure that the color and floavor and quantatty
mentioned or same .
4.check if it contains any chemicals .
5.Check the expiry period and try to check if has some
smell before the expiry period.
6.check its effect when it is in Cold storage and hot
storage .
7.check if the bottle has properly sealed or not .
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
can you tell me how to write test cases for payments, receipts, inward clearing, outward clearing, A/c statements ?
Explain the unit testing?
Test Case for Text Editor!
explain end to end scenario's for online Money transfer in Banking Domain?
can one defect be mapped to more than one test script in manual testing
pls i want test cases for oss? whts the process of oss testing
What is transaction testing?
How should I maintain the test cases and Test Log for different versions/builds of the application.
User registration form so many details will be there to enter like Username,Phone No,Email id ect.how do we write test cases for that? in one textbox i have to write all the test cases and go to next textbox
If userA send a string through whatsapp but userB is not getting properly the string, Then what may be problem? Can someone write testcase of this. Both whtsapp application is same version and OS is also same android version.
write a test cases for WLAN
Which of the following defines the expected results of a test? Test case specification or test design specification.
Test a function that reads a file into memory, say ReadFileToMemory( FILE * pFile, BYTE * pMem, DWORD numBytes)
write test case for pen cap if it is not present?
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