what will be testcases for job portal such as naukri.com ,
monster.com
(as existing user)
Answer Posted / himanshu
company name should be there jd should and most important view and apply options should proper work this Is from candidate point of view and employer received resume and candidate profile only which candidate apply no junk cv should land in there inbox candidate apply for job must received notifications this is basic scenario restall feature which may depend on different portal 1more thing job posted date should mention and jobs must be categorized easily searchable
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. If width > length then biggest_dimension = width else biggest_dimension = length end_if the following has been added to the bottom of the code fragment above. Print 'biggest dimension is ' &biggest_dimensionprint 'width: ' & width print 'length: ' & length how many more test cases are required?
If there are 3 modules what would be test for that three modules but that 3 modules are not developed or what are the test case for that 3 modules
i am preparing for interviews in real time job what test cases we have to prepare please explain with example?
Test a file replication service that copies files from one net location to another
What is the toughest moment you faced in your testing carrier in which everyone praised you?
write a test case flipkart login page
What is Initial Configuration?
Positive and Negative test cases for the speedometer?(minimum 5 each)
Scenarios to test wireless Speaker via bluetooth
can anyone please help me in writing Test cases for HRMS,ERP and for CRM Apllications...I am joined as a trainee.so i have to write test cases for these applications..Soo can anyone pls help me....mail id: bapuji.karyampudi@gmail.com....Please reply me guys.
How to write test cases for lift?
Give me a example that differentiate Test case Procedure,Test case Scenario,Test case Discription & test steps.
Hi there Just done with QTP training. I am looking out for a job. can any one share your experinces in real time job. I mean How the work flow goes and what other things do i have to learn for getting a job. please respond ASAP this is urgent for me. Regards Lina.
Could you pls give me sites where i can test card? mail me to
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