What is pure abstract class in c#?



What is pure abstract class in c#?..

Answer / Deepika Rani

A pure abstract class in C# contains one or more abstract methods but no concrete (non-abstract) methods. It cannot be instantiated and its purpose is to provide a common base for other classes.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is the different types of private assembly and shared assembly?

1 Answers  


What is satellite assembly? And steps to create satellite assembly?

1 Answers  


Write a console application and implement the ternary operator to decide whether the age a user entered after being prompted is allowed to vote or not(given that only citizens between 18 and 120 years only inclusive can vote). Use exception handling for non-numerical input.

1 Answers  


what is the difference between convert.tostring() and tostring() functions ?

1 Answers   QuestPond,


What is Inheritance in C#?

2 Answers   B-Ways TecnoSoft,


What is a delegate?

5 Answers   Siebel Systems,


Explain 'structure padding'?

1 Answers   DELL,


Is everything an object c#?

1 Answers  


class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....

3 Answers   HCL,


What is continue in c#?

1 Answers  


What are properties in c#. Explain with an example?

1 Answers  


int a = '3' + '4'; char n = (char)a; What will be answer of n?

4 Answers  


Categories