what is the abstract class,interface ,its difference with a programatic eg.?
hi,recently i went for an interview they ask me what is abstract class ,interface and its difference
I said abstract class contain abstact method ,abstract method is a method with no body.Abstract class cannot be instantiated.Abstract class is a base class it required derived class for the implementation of method.
Interface is a syntactical contract that all derived class should follow
it define properties ,method,events which are known as member of interface.
Then They asked me what is the difference between them. I said
abstract class interface
1.abstact class can implement method 1.interface cant
2.abstact class can contain constructor, 2.interface cant
destructor
3.abstract class cannot support multiple 3.interface support
inheritance
etc
Then they said some different answer I said dont no.
Then they ask me when i should make abstract class for an project and when
i should make interface.
I said if suppose there is two class which must be having method with different logic then we sholud make abstract class.
and if suppose we have two class having method .with different logic then we can make interface .
Am i correct with my explaination.if not correct me .please provide me that when should we create abstract class and interface and what is difference .please help me

Answer Posted / sachinmundhra

Abstract class will have a pure virtual function. A virtual
function having no body.

virtual void display() = 0 ;

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is polymorphism used?

581


Why it is called runtime polymorphism?

573


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2029


Who invented oop?

651


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

1650






Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2006


c++ program to swap the objects of two different classes

1761


Give two or more real cenario of virtual function and vertual object

1851


What are oops functions?

583


Can we create object of interface?

601


Can we override main method?

603


What is for loop and its syntax?

596


program for insertion ,deletion,sorting in double link list

2276


Advantage and disadvantage of routing in telecom sector

784


Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.

693