But what to do if you need to quickly
fix an error in an unknown project or if you are not familiar with the language in which the programme is written. In this case, the universal method will help you. However, you will need to know how to operate algorithms since this is the universal language of all programs. This skill will help you quickly orientate yourself and still find the fault.
The universal method of error search is actually very similar to binary search: you should divide a conditional code fragment in half and perform necessary operations that will help you understand the real state of affairs.
For example, you have the same error of division by zero but without specifying the place. There may be a great number of such places, so it is difficult to check each of them for a potential error. But you may write a ‘special’ error, that is, you may make a clear error that will definitely break the programme execution.
For example, it may be an invalid character or an incorrect operation. And then it is the same as in a binary search:
- if your ‘special’ error appears earlier than the error you are looking for, it means that the problem is somewhere further down the code;
- if your error has not appeared at all, it means that you have already jumped over the problem.
Such a simple division of code chunks will very quickly allow you to localise the error you are looking for and start analysing it.
These two simple approaches can help you to deal with any problem when writing code, BizUPLab company managers advise. The backward method will help you to find the exact place where everything went wrong, and the binary division will quickly narrow down the search of this place in the code. Naturally, these approaches are not a panacea, but they are an excellent start and a great foundation for further development of your own methods.