The Occurrences Of Run-time Error And The Ways To Manage This Error

Asked By 0 points N/A Posted on -
qa-featured

What does Run-time error mean? Where it occurs and describe the ways to manage this error? Explain the process which was designed to fix this error?

SHARE
Answered By 10 points N/A #330990

The Occurrences Of Run-time Error And The Ways To Manage This Error

qa-featured

Run-time error is an error that comes during execution the of a program or task. A Run-time error is mainly a break-down in a program. It occurs during the execution of tasks, programs, or functions.

The ways to manage Run-time error are described as follows:

  • Try: This identifies the set of codes that can generate an error in the program.
  • Catch: It’s a catches an exception with an exception handler in the program.

Finally Block: It executes the program after try and catch exits.

Exception Handling is the process that is designed to manage with Run-time error.

Related Questions