+ 2
How to improve ERROR solving skills???
3 Réponses
+ 2
I hope you are talking about general computer programming rather specific domain.
To solve errors whatever it may be you need to know that there is an error,by the grace of our outstanding compiler designers , this job is mostly performed by tools such as compilers /interpreters.
But still better if you know the possibilities of error occourance and reason for which you must have a solid knowledge of the language you are using ,its syntax ,its limitations as well as the logic you are applying.
Soemtimes the files you are linking as well as things such as the IDE you are using make a difference.
Mostly error occours in those corner cases so logic matters.
The most important thing practice and experience.
+ 2
You learn to solve errors by practicing it.
And if you don't deliberately evade it (for example by asking other people to debug your code), you will automatically get a lot of practice.
Your job is to be stubborn!
Don't let that bug go. Test and debug and test and debug and test, until finally your code does exactly what you want and nothing else.
It often helped me to actually write out one iteration of my code on paper. It creates an artificial distance, and suddenly you see what you were missing before.
+ 2
Thanks for giving information. This is important for me.