what are abstract classes and how they impliment , with
example
Answers were Sorted based on User's Feedback
Answer / manoj kumar
abstract class is a class which may or may not contain
abstract method.
abstract class can,t be instantiated i.e. we can,t
create object of an abstract class.
abstract class can be subclasses .
abstract class is a class which is declared abstract.
if any class contain abstract method then it can be
declared abstract.
example
abstract class{
abstract public void display();//abstract method
}
abstract method is method which is declared but not
implemented i.e. without braces followed by semicolon.
| Is This Answer Correct ? | 8 Yes | 1 No |
A class with atleast one pure virtual function is called
abstract class.It cant be instatiated.It can be used as a
base class for other classes. The class derived from an
abstract base class can be instantiated,provided it should
implement the abstract base class pure virtual function.
| Is This Answer Correct ? | 7 Yes | 0 No |
who is the founder of c++?
What are the 3 principles of oop?
What is the difference between the C & C++?
Plese get me a perfect C++ program for railway/airway reservation with all details.
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
whats the difference between c and c++
What are the important components of cohesion?
What language is oop?
WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEASE EXPLAIN IT.
difine hierarchical inheritance.
sir i want to know which posting to apply since i am BE CSE.. also want to know what are the rounds there for my interview...Expecting for ur valuable answer....
How compiler selects(internally) required overridden function in inheritance?
2 Answers CSC, Infinite Computer Solutions,