answersLogoWhite

0


Best Answer

compile error

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

Runtime Error.

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
4y ago

exaptional

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What error is caught when a program executes?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What error is caught when the program execute?

runtime error


Which component of a computer system executes the program and how?

C.p.u. Executes the program


Which component executes program instructions?

The CPU executes program instructions.


Definition of a program in UNIX?

Something what the computer executes.


What is the meaning of this term Stored Program Concept?

a program that is stored in the memory of the computer that executes it


How PLC store a program?

how a plc stores a programme and executes it


Who translates and executes program at run time line by line?

interpreter


What kind of program is interpreters?

An interpreter is a specialized kind of computer program. This program executes instructions written in a programming language that is not the native coding.


What program is the program that contains the language instructions or code to be converted?

There is no such thing: compiler translates but doesn't execute; interpreter executes, but doesn't translate.


What is the difference between a semantic error and logic error?

An error in the logic of a program means that the output of the program is faulty (eg the program tell you 2+2=5). An error in semantics in a program means that the program statements are not constructed properly and the usual result of this is that the program will not compile.


What is the use of the central processing unit?

it executes the program ,performs the computations and controls the flow of the instructions.


What are runtime errors in c?

A run time error occurs when a compiled program executes, and during execution, the binary code attempts a task that is not permitted by the operating system or libraries. Divide by zero is an example of a run time error. When the executed program divides one variable by a second variable, and the second variable holds a value of zero, the run time library will issue a run time error. Since the compiler cannot predict the values held by the variables, it cannot prevent such an error from occurring, and so the run time library traps the run time error during program execution. . Some run time errors include: - divide by zero - no stack space - memory reference out of bounds - write protected file