Can u please explain wat is Cyclomatic Complexity?and wat
is incident?
Answers were Sorted based on User's Feedback
Answer / revati
Cyclomatic Complexity(CC):
The number of independent paths through a program.
You can count CC with 3 different ways .
1. CC = Edges - Nodes + 2
2. CC = Predicate Node(which has 2 paths) + 1
3. CC = Bounded or Closed region + 1.
Other than above the easiest way to calculate CC is to sum
the number of binary decision statements(e.g. if, while,
for etc) and add 1 to it.
Incident:
It is an event that occures during testing requires further
investigation.
An incident is any situation where the system exhibits the
questionable behavior, but often to refer to an incident as
a defect only when the root cause is some problem in the
item we're testing.
Other causes of incidents include misconfiguration or
failure of the test environment, corrupted test data, bad
tests, invalid expected results and tester mistakes.
| Is This Answer Correct ? | 3 Yes | 1 No |
Cyclomatic complexity is a software metric, It used to
measure the complexity of a program. It directly measures
the number of linearly independent paths through a program's
source code.
M = E − N + 2P
where
M = cyclomatic complexity
E = the number of edges of the graph
N = the number of nodes of the graph
P = the number of connected components.
Here main things is of identifying predicates or decision
points ( predicate node means edge connectin two nodes).
Incident:- Its unusual or unespected behaviour that occurs
or occured in the software or appplication is caled incident
specifically designated for the task beforehand or on the
spot, It can be a hardware problem too.
It can be produced or may not be produced
| Is This Answer Correct ? | 2 Yes | 0 No |
In Manual testing how to test proxy servers? can u please explain with example?
what is ur template of test case & which is the best?
How you will assure client that the number of test cases written by you is sufficient or can complete the test coverage completion criteria?
test templet for GUI UNIT testing?
Write or explain 3 testcases you executed recently with detailed descriptions ,steps to reproduce & explain what results they gave when you executed on a recent build?
what is containment mechanism
how to write manual testcases for download the files from the template. for example:from product cost enddate
What is buffer overload? How can you test buffer overload in the AUI?
exactly what is the purpose of configuration mgt tool? also give some examples?
What is Regression Testing ? Why do Regression Testing ? Why all the testcase execuation in each time of Regression testing ?
What are the models/stages available in SDLC.
Diffrernce between client server testing and web server testing.