GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  J2EE  >  Core Java

 Print  |  
Question:  what is difference between instance and object.?
what are the all difference between interface and abstract class?




November 11, 2005 16:44:39 #7
 Mandar Arun Joshi J2EE Expert  Member Since: November 2005    Total Comments: 20 

RE: what is difference between instance and object.?
 

Object is instance of a Class.

All variables of interface are by default static, final. Interface can not have implemented methods. All methods are by default abtract.

Abstract class should have at least one abstract method, other methods can have implementation.

     

 

Back To Question