write a test case on web login and bank application and
client server
Answer Posted / rajveer
Hay guys i think you all move to the wrong direction. We are
here to find the anser and that Guy give us the Perfect
anser. Now if we all are not interested to look into what he
provide rather then keep busy himself in counting when he
not provide(Proper English) then guys you all count urself
as good in english. then just take the main idea( Knowledge
he provide) and then remodify that matter and again paste.
Simple.
Better to do something rather then just count other's Mistake.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Write Test cases for the below scenario? scenario 1: Replace the current CSS software with TML software. Scenario 2: Provide the same reports for business as currently provided by CSS software. Not: CSS and TML are customized software.
How to write test case for this scenario. The First Name data entry field shall be removed from the existing Contact Information screen
Can you list down a few characteristics of a test case?
How to write test case for this scenario. The text field that reads “ enter SDU number or the city and state of the SDU” shall be removed from the contact screen
how to write a test cases for Quick links like Feedback/Suggestions Advertise with us Contribute Invite a Friend FAQs Make HomePage RSS Feed Buzz Words Email Privacy Statement Terms & Conditions Copyright Disclaimer Download Forgot Password
Explain the domain testing?
can any body help me with providing a a case for usability testing...
Write a test case for computer keyboard?
WE WANT HEALTHINSURENE PROJECT FUNCTIONAL TEST CASES
Which of the following defines the expected results of a test? Test case specification or test design specification.
How to write test cases or test scripts for UAT testing which is done manually
How to write test cases for lift?
What is ramp testing?
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.
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