InterviewSolution
Saved Bookmarks
| 1. |
3. How compiler error is different from logical error? |
|
Answer» re generally two types of errors: SYNTAX errors and logic errors. Syntax errors OCCUR when a program does not conform to the grammar of a PROGRAMMING language, and the compiler cannot COMPILE the source file. Logic errors occur when a program does not do what the programmer expects it to do. |
|