Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 815 Page Views: 

What is the difference between Exception and Error ?



Posted By: Avi Date: 9 November 2010 07:06:52 AM
 Answer:

Exception is recoverable and the Error is unrecoverable.


Posted By: avibtech


Date: 9 November 2010 07:06:52 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 34CvsO
Related Questions
Core Java : What is synchronization?

What is synchronization?

synchronization is the capability to control the access of multiple threads to shared same resources....
Category: Core Java Date: 11/3/2010 3:22:47 PM
Core Java : How are Java source code files named?

How are Java source code files named?

A Java source code file takes the name of a public class or interface that is defined within the fil....
Category: Core Java Date: 11/3/2010 3:10:53 PM
Core Java : Can an object's finalize() method be invoked while it is reachable?

Can an object's finalize() method be invoked while it is reachable?

An object's finalize() method cannot be invoked by the garbage collector while the object is still r....
Category: Core Java Date: 11/3/2010 2:37:52 PM
Core Java : What is garbage collection?

What is garbage collection?

Garbage collection is the process of releasing memory used by unreferenced objects automatically.
Category: Core Java Date: 11/3/2010 2:05:51 PM
Core Java : What state does a thread enter when it terminates its processing?

What state does a thread enter when it terminates its processing?

It enters the dead state.
Category: Core Java Date: 11/3/2010 1:00:49 PM