my namjad . firefox doesn't open yahoo page but other page
open so what is reason I'm again install but is not working
Answer Posted / vikas_g_g
Your FireFox version may be older. Try with the latest
Firefox verison 3.0.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
For how many days (or) weeks you will test a product or software?
Can someone help to write testcase for the scenario as early as possible.: 1. Complaint logged since one week 2. complaint info sent to supervisor with high priorit mail 3. 10 users logged into website , performance could not be degraded ( response within 5 seconds) 4. site should be user protected. 5. it should be work with IE 6 IE 7 6. complaint log should be generated more than one week
What is gray box testing?
Explain the concept of semi-random test cases?
HOW TO WRITE TEST CASES FOR MEGHA MENU DROP DOWN BOX.
what is black box system in software development in system analysis and design?
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
If I have to write the test cases for any report & there is date box.then may I have to write only select date or have to write all steps required for selecting date
What are basic types of test cases?
how many test cases do u need to ship a product?
How to write test cases for lift?
Explain the logic testing?
What are semi-random test cases?
In manual testing, I have query regarding data conversion testing. I am working on xml document. How do we write test cases for below input as well as for output
Input:
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