What is the difference between Abstract and Interface?
Answer Posted / jithin j
Interface: contain only abstract method and static and final (constant) variable.Even if we don't use static and final keyword it is considered as constant
Abstract: contain both abstract and non abstract method
Interface: class implements interface
Abstract : class extends abstract class
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is difference between variable and property in c#?
What is jagged array in c#?
List the 5 different access modifiers in c#?
What is parallel foreach c#?
Can abstract class have constructor c#?
What is dataset and dataadapter in c#?
What are Types of assemblies that can be created in dotnet
Is the following code legal?
HOW to Develope the CRUD(create,read,update,delete) FORM IN WINDOWS form by using c# only
When would you use generics in your code c#?
What is a nested type. Give an example?
What is boxing in c#?
Why do we need interfaces in c#?
What are the types of class in c#?
What do you mean by expression tree?