Computer Science, asked by junaidbca999, 6 months ago

explain cyclomatic complexity in software engineering​

Answers

Answered by sheenabeno
0

Answer:

Cyclomatic complexity is a software metric used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program's source code. It was developed by Thomas J. McCabe, Sr. in 1976.Cyclomatic complexity (CYC) is a metric for software quality.Cyclomatic complexity can be one of the most difficult code metrics to understand. And that makes it difficult to calculate.

It can be used in two ways, to:

  • Limit code complexity.
  • Determine the number of test cases required.

Cyclomatic complexity of a code section is the quantitative measure of the number of linearly independent paths in it. It is a software metric used to indicate the complexity of a program. It is computed using the Control Flow Graph of the program. The nodes in the graph indicate the smallest group of commands of a program, and a directed edge in it connects the two nodes i.e. if second command might immediately follow the first command.

Explanation:

Answered by ramesh198034
0

Explanation:

this is your answer

science

Similar questions