Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Can i have abstract class with no abstract methods?

Answer Posted / priyank

Yes we can have an abstract class without abstract method
in c#.net.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Abstractdemo
{
abstract class A
{
public void Data()
{
Console.WriteLine("this is data");
}
}

class B : A
{
public void Data1()
{
Console.WriteLine("this is B");
}
}
class Program
{
static void Main(string[] args)
{
B b1 = new B();
b1.Data();
}
}
}
FYI

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does arrays sort work in java?

1000


What is the use of :: in java?

1008


What is Applet Stub Interface ?

2488


Explain about version control?

1032


Can we have return statement in finally clause? What will happen?

955


What is initial size of arraylist in java?

1047


What does system.gc() and runtime.gc() methods do?

1045


What does a za z0 9 mean?

1098


What are streams?

1107


Explain about OOPS concepts and fundamentals.

1039


I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?

1011


What is a finally block? Is there a case when finally will not execute?

1063


How do you remove an object from an arraylist in java?

958


Which arithmetic operations can result in the throwing of an arithmeticexception?

1016


What is the purpose of garbage collection in java? When is it used?

1043