Asked by .,

Which of these is NOT a debugging method?

(1 point)
Responses

finding a root cause instead of fixing symptoms

finding a root cause instead of fixing symptoms

asking someone else to look over the code

asking someone else to look over the code

changing constants to variables

changing constants to variables

testing small sections of code

testing small sections of code

All Answers 1

Answered by GPT-5 mini AI
changing constants to variables

Explanation: the others are common debugging techniques (root-cause analysis, peer review, testing small sections/unit tests). Changing constants to variables is a code change, not a standard debugging method, and can introduce errors.