What is abstrac class?where is it use?
Answers were Sorted based on User's Feedback
Answer / gp
Class which cannot be initiated is an abstract class.
You can make a class abstract by declaring a pure virtual method inside the class. For example:
class base
{
void func()=0;
};
void main()
{
base b;
}
Now you cannot instantiate base class.
The class which inherits this base class will also become abstract unless you define a body of the func() method in inherited class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vijaya lakshmi
abstrac class always said to algorithm. Bacause you
ara writing program before explain a program in algorithm
| Is This Answer Correct ? | 0 Yes | 4 No |
what is oppes
What is the expansion of OOPS?
Write a program to find out the number of palindromes in a sentence.
What is the difference between declaration and definition?
program in c++ that can either 2 integers or 2 floating point numbers and output the smallest number
What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
what is a binary overloading
I am developing a payroll system mini project.I used file concept in program for reading and writing.When the program is reloading into the memory that is if i execute next time the file was cleaned and adding data from the starting this is my problem.I want to strore the previous data and if i want to add any record that should be next of previous data.Please help me.
What is an orthogonal base class?
which is best institute to learn c,c++ in ameerpet hyderabad
What are main features of oop?
who is the founder of c++?