Debugging in Eclipse

What is Debugging? Debugging of the code helps us to understand execution of the program line by line. In debugging we can see what is value of variables after each line which can help us understand logic of code and identify errors or bugs. Debugging can be done manually using pen and paper or by … Read more

Right way to debug code using pen and paper

Anyone who is starting to code, the most difficult thing they face is to understand others code. If the code has 2-3 nested loops then even an experienced persons face a lot of problem. Understanding someone else’s code or code present on internet is very frustrating and takes a lot of time. So my advice … Read more