Answer:
The correct answer to the following blank is logic errors .
Explanation:
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.