General Debugging Techniques
Learn some common methods to debug.
We'll cover the following...
Aim of debugging
Debugging aims to explain the product’s behavior through code, i.e., be able to point out what and why the code is executing the way it is, leading to the incorrect result from the product. We must trace the code path(s) and the internal state the process has followed and narrow down the code path that missed the scenario or ...