answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why do i find an error as arrayOutofBound Exception 0 while running program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is exception in module skypeexe at 00119825 internal error?

When you get that type of error message, the exact error number is usually irrelevant. What this means is basically that there was an error running Skype, in this case. Some things you can try is simply running the program again; restarting the computer; reinstalling the program (Skype).


What does programming error-exception occurred mean on DVD shrink?

A program error exception in ANY program means that some error occured in the program that was unexpected, hence the word "exception" here. An error that a program expects might happen wouldn't be an exception per se, and it would be programmed to deal with that. You might try to update to a newer version of the program that might have a fix built into it to deal with that, or post a bug report (if it's repeatable) on the creator's website so they know that issue exists.


Is error and exception same?

Error: Any departure from the expected behavior of the system or program, which stops the working of the system is an error. Exception:Any error or problem which one can handle and continue to work normally. Note that in Java a compile time error is normally called an "error," while a runtime error is called an "exception." Errors don't have subclasses while exception has two subclasses, they are compile time exception or checked exception (ClassNotFound Exception, IOException, SQLException etc.) and runtime or unchecked exception(ArrayIndexOutOfBounds Exception, NumberFormat Exception).


Which type of error produces incorrect results but does not prevent the program from running?

Logic error.


Why do you need exception handling codes in a program?

separating error handling code from 'regular' code


Which error produces incorrect results but does not prevent the program from running?

logic


Do errors cause programs to run slow or perform needless tasks?

It depends on the nature of the error. For example a segmentation fault in a C++ program causes the program to stop working. A logical error making a while loop always run causes the program to repeat whatever is in that loop, often needlessly. A hardware error can cause anything from a complete crash to an exception throw to running slow. This list can go on as long as one wishes.


Must a Catch block include an exception object variable?

Yes. Without an exception, the program would never know when to enter the catch block. Most compilers will give a syntax error if you do not include an exception.


What is difference between exception and a bug?

Exceptions can be errors that have been caught or where expected. They can then be managed. The may look like bugs to the user if the error message is outputted to the screen but this is a handled procedure. A bug something not been anticipated and so causes an error and this error is not handled. So bugs can be more serious as they can cause the program to stop running.


What is difference between exception and error in java and explain using a program?

Error occurs at runtime and cannot be recovered, Outofmemory is one such example. Exceptions on the other hand are due conditions which the application encounters, that can be recovered such as FileNotFound exception or IO exceptions


How do you fix runtime error 430?

Runtime Error 430 is a common computer error that occurs when you are running a program. It is closely tied with Invalid Windows Registry, Malware attacks, Confliction with Terminate and Stay Resident Program or other current running program, software confliction and memory issue. Runtime Error 430 cannot be solved manually even if you are a computer professional. If you are encountering runtime error 430, you should install the correct version of MDAC on the user's computer and change the installation program to redistribute the correct version.


What is the difference between runtime errors and compile time error?

Compile time errors occur do to syntax errors (such as forgetting a semi-colon at the end of a line) and they prevent your program from even compiling. A runtime error is an error in logic in your program. Your program will compile, however while running the program it will throw an error because it tries to do something illegal (such as dividing by 0).