what is the use of abstract class?

Answers were Sorted based on User's Feedback



what is the use of abstract class?..

Answer / rakesh

Java Abstract classes are used to declare common
characteristics of subclasses. An abstract class cannot be
instantiated. It can only be used as a superclass for other
classes that extend the abstract class. Abstract classes
are declared with the abstract keyword. Abstract classes
are used to provide a template or design for concrete
subclasses down the inheritance tree

Is This Answer Correct ?    18 Yes 0 No

what is the use of abstract class?..

Answer / amod

1:Abstract class is a class which has many abstract methods
2:Abstract class cannot be instantiated
3rd ly the abstrat methods r blank

the child class use the or it extend the abstract class
for its use
the child contains the abstract methods

Is This Answer Correct ?    0 Yes 4 No

what is the use of abstract class?..

Answer / malay

Abstract class should must used for only implemented the
body in its Subclass and also implemented the astract
methods in ts subclasses.

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More Core Java Interview Questions

Can a class be final?

0 Answers  


What is the difference between superclass and subclass?

0 Answers  


What is the difference between Java Program Constructor and Java Program Method, What is the purpose of Java Program constructor Please Explain it Breafily?

0 Answers   PUCIT,


Implement two stacks using a single array.

0 Answers   Global Logic,


What is args length in java?

0 Answers  






What is the difference between integer parseint and integer valueof?

0 Answers  


What is an immutable class?

0 Answers  


What are the three types of design patterns?

0 Answers  


What is ternary operator?

0 Answers  


who can we create the object of a class? in how many ways we can create it (max 5)

2 Answers  


what is the Use of throws exception?

2 Answers  


What does the “static” keyword mean?

0 Answers  


Categories