Answer Posted / pushparaj pentakota(anakapalli
the class which is having atleast one abstract method is called abstract class.and we can't create an object on these classes.we have to implement those methods in child class to make that as concreate class.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List some of the common data providers for ado.net framework?
What is c# best for?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What is executereader in c#?
What is continue in c#?
Which attribute is used in order that the method can be used as webservice?
Can mvc be used for desktop applications?
What is function and method in c#?
What is binary search tree in data structure?
What is difference between il and dll ?
Define multicast c# delegate?
Can you inherit multiple abstract classes in c#?
Is null c# operator?
What is .net c#?
What to implement on my class Finalize or IDisposable