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.........
Answers were Sorted based on User's Feedback
Answer / aadit
it should start scanning on clicking 'start' if the av is
set "on"
it should not start scanning if the av set "off"
it should start full scanning if the scanning option is
selected as full
it shoulld exclude the files and folders from scanning if
the option is selected
it should start parital scanning if the scanning option is
selected as custom
it should start a shedule scanning if the option is set "on"
it should not start shedule scanning if set "off"
it should start shedule scanning on sheduled time if option
is set "on"
it should start rea-time scanning if option is set "on"
it should not start rea-time scanning if option is set "off"
further it can be detailed.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
Please let me know how to write a test case for Pen and washing machine.
Credit card field contains four text boxes. We can validate each textbox separately with conditions but how can we write integrated testcase for all the four?
What are the Test Cases Comes under Regression Suite?
How to perform a stress test on an ATM machine? (Note ATM is a Bank ATM say Citibank, IICICI etc)
For how many days (or) weeks you will test a product or software?
Please share all possible positive and negative test cases for SQL reporting services.
write test case for white board marker.
How many test cases can u write 1) File - open dialog box in notepad pleasse write
How to write test cases ?
Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?
How does one write Test Cases?
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<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);