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...

class A
{
public void disp(int a,int b)
{
System.out.println("hai");
}
}
class B
{
public void disp(int a,int b,int c)
{
System.out.println("hai");
}
}

above program is overloading or overriding?

Answer Posted / abhijit ghosh

It is neither overriding nor overloading.
because class A and B are two different and independent
classes. So "disp" function for both are completely bound by
the scope of their respective classes or more to say to the
objects of respective classes. Therefor,
if aa and bb are two objects of class A and B respectively
then
aa.disp() and bb.disp()will be two distinct function of two
different objcts of different classes only.

Is This Answer Correct ?    30 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we use both this () and super () in a constructor?

1049


What is the difference between length and length() method in java?

1173


What are multiple inheritances? Is it supported by java?

1009


Should a main method be compulsorily declared in all java classes?

1136


Is oracle java 11 free?

1013


Can we instantiate interface in java?

1192


What is boolean keyword in java?

1178


Is math an abstract class in java?

1078


What is the difference between a factory and abstract factory pattern?

1200


Where we write javascript code in html page?

1108


What is the private method modifier?

1142


What is the difference between menuitem and checkboxmenu item?

1382


what is a green thread? : Java thread

1078


What is the internal implementation of set in java?

996


State some situations where exceptions may arise in java?

1104