What are the types of classes in java?

Answers were Sorted based on User's Feedback



What are the types of classes in java?..

Answer / vikram naidu

basically in java we have 2 types of classes. those are user
defined classes and pre defined classes. in both we can
differentiate the classes in 3 ways. those are interfaces,
abstract classes and concrete classes. Where we can't create
the objects for the abstract class and interfaces. by using
inheritance concept we can able to create the object of the
for the derived classes and assign those objects to the base
class references(according to OOP concept).

Thank you.

Is This Answer Correct ?    30 Yes 2 No

What are the types of classes in java?..

Answer / raj singh

There r 2 type of class in java , first is pre-define class( which r define in advance for diff. Purpose like String, StringBuffered ,Applet class. Some Of these classes stored in packages...) and other is user-define class ( which r define by the user for its usage's.

Is This Answer Correct ?    4 Yes 2 No

What are the types of classes in java?..

Answer / moonali roul

String class, StringBuffer class, Math class, Wrapper class

Is This Answer Correct ?    9 Yes 18 No

What are the types of classes in java?..

Answer / poojadayal1989

abstract fianl

Is This Answer Correct ?    2 Yes 20 No

Post New Answer

More Core Java Interview Questions

What is computer compiler?

0 Answers  


What is non static block in java

10 Answers   Emphasis, Ness Technologies,


int a=1; float b=1.0; System.out.println(a==b);

13 Answers   CTS, Honeywell, McAfee,


What is difference between array and vector?

0 Answers  


Which are different kinds of source code?

0 Answers  






Write the code for Palindrome ?

2 Answers   Bally Technologies,


If a class is declared without any access modifiers, where may the class be accessed in java programming?

0 Answers  


What does  mean in regex?

0 Answers  


Explain jdk, jre and jvm?

0 Answers  


How many characters is 2 bytes?

0 Answers  


when asub class inherits a super class and overrides a public method of super class in sub class(public method in super class). why these methods needs to be public in sub class. (otherwise compile time error).

3 Answers  


What all access modifiers are allowed for top class ?

0 Answers  


Categories