It is proven fact that reducing the CCN of.code is known to reduce the number of errors in the code
Answers
Reducing the CCN of code does not reduce the number of errors or bugs in the code. CCN ( Cylic Complexity Number ) is a quality metric used to judge the complexity level of a software. It just measures the number of linear independent paths through the source code of a program.
Although the question is quite unclear, I'm assuming that it's a true/false type of question.
So, the given statement is completely false. It is not a proven phrase that reducing the CCN of code is known to "reduce the number" of error in the code.
"Cyclomatic complexity" is a type of software program which is used to indicate the "complexity of a program". It uses flow graph to define the control of the program.
It is also applied in the parts of the program such as function, module, and classes present in the program.