InterviewSolution
| 1. |
When A Runtime Error Occurs? |
|
Answer» A runtime error occurs when the computer is DIRECTED to perform an illegal operation by the program such as DIVIDING a number by zero. Runtime errors are the only errors which are DISPLAYED immediately during the execution of a program. When these errors OCCUR, the computer STOPS the execution of the programming and can display a diagnostic message that will help in locating the error. A runtime error occurs when the computer is directed to perform an illegal operation by the program such as dividing a number by zero. Runtime errors are the only errors which are displayed immediately during the execution of a program. When these errors occur, the computer stops the execution of the programming and can display a diagnostic message that will help in locating the error. |
|