Can any body please tell me how to test Anti-virus software?
I have been asked this question many times in interview.They
asked this question for a security tester,performance tester
& functional tester perception. Hope u guys will reply me.
Any suggestions welcome.........
Answer Posted / mudaseer
first install the software it should install in the pc
then start scanning it should remove the viruses present in
the pc
it should not delete any data present in the pc
it should scan fast(performance should be fast )
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Why does the boundary value analysis provide good test cases?
Explain the scalability testing?
Explain the static testing?
Why is it that the boundary value analysis provides good test cases?
Can anybody help me in writing test cases for a scenario? need help at the earliest. will send you the requirement doc to your email id. thanks raj
Test a file replication service that copies files from one net location to another
Write all test cases for Bus Pass Renewal
Explain the sanity testing?
write test case for pen cap if it is not present?
Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?
write a test case flipkart login page
how to prepare a test case for online restaurant table reservation system. plz give an answer ASAP, email at suja_rvndrn@yahoo.co.in
how to write test cases for online restaurant table booking system?
pls i want test cases for oss? whts the process of oss testing
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