C# Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2105 Page Views: 

What are the properties of abstract class?



Posted By: Avi Date: 3 July 2010 01:50:28 PM
 Answer:

1. Abstract class can contain the prototype of method and/or implementation of methods.

2. Direct object of abstract class is not possible.

3. We need to inherit a class and make the object of derive class and can access the abstract class methods.

4. Abstract classes can contains the abstract functions.


Posted By: eTechPlanet


Date: 3 July 2010 01:50:28 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image ZH7Ntq
Related Questions
C# : Which class can be used to perform data type conversion between .NET data types and XML types?
C# : Explain the different types of comments in C#?

Explain the different types of comments in C#?

Following three types of comments can be used in C#: 1) Single-line Comments: Example: //..commen....
Category: C# Date: 10/28/2009 4:53:21 AM
C# : What is the syntax to inherit from a class in C#?

What is the syntax to inherit from a class in C#?

After the name of derived class, place a colon and then the name of the base class. For example: ....
Category: C# Date: 10/15/2009 4:39:26 AM
C# : How can we sort the elements of the array in descending order?

How can we sort the elements of the array in descending order?

By calling Sort() and then Reverse() methods of the Array object.
Category: C# Date: 10/15/2009 4:36:14 AM
C# : What is the difference between the System.Array.CopyTo() and System.Array.Clone()?

What is the difference between the System.Array.CopyTo() and System.Array.Clone()?

CopyTo() method copies all the elements of the current one-dimensional Array to the specified one-di....
Category: C# Date: 10/15/2009 4:33:18 AM