Answer:
The correct answer to the following blank is logic errors .
Step-by-step explanation:
- Logic error or the logical error is the mistake that occurs in the source code of the program that results in unexpected or incorrect.
- It occurs when the programmer do mistakes in the writing of the source code and he unable to catch that error then the result is incorrect because it is not easy to recognize.
For example:
If the programmer write the following code
if(a=2){....} is incorrect instead if(a==2){....}, in the following, the difference of 'equal to' or 'is equal' to can give an unexpected or incorrect error.
So, the logical errors are not easy to recognize.