Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Difference between error and exception

Answers were Sorted based on User's Feedback



Difference between error and exception..

Answer / rams

The mistakes in the syntax are resulted as errors
the mistakes in the logic of a program resulted as exceptions.

Is This Answer Correct ?    16 Yes 1 No

Difference between error and exception..

Answer / modi

An error is an irrecoverable condition occurring at runtime.
Such as OutOfMemory error. These JVM errors and you can not
repair them at runtime. While exceptions are conditions that
occur because of bad input etc. e.g. FileNotFoundException
will be thrown if the specified file does not exist. Or a
NullPointerException will take place if you try using a null
reference. In most of the cases it is possible to recover
from an exception (probably by giving user a feedback for
entering proper values etc.).

Is This Answer Correct ?    3 Yes 0 No

Difference between error and exception..

Answer / chitraraman

Error in java means the mistake done buy the programmer
logically or syntatically.
Exception is an error thrown by java impllctly like
IOException,Array out of bound Exception

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Core Java Interview Questions

Where are global variables stored?

0 Answers  


What is a java list?

0 Answers  


What is the difference between superclass and subclass?

0 Answers  


What is percentage in java?

0 Answers  


How does regex work?

0 Answers  


What are the three parts of a lambda expression?

0 Answers  


hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class

1 Answers  


WHAT IS THE MEANING OF ALL TYPE OF BUZZWORDS?

4 Answers  


Explain the importance of finalize() method.

0 Answers  


Explain the difference between the public, private, final, protected, and default modifiers?

0 Answers  


How does serialization work

3 Answers   Ordain Solutions,


I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?

0 Answers  


Categories