The following program is Overloading or Overriding?
public class PolymorphismEx {
public int sampleMethod(int a) {
return a;
}

public String sampleMethod(int a) {
return "Is it Overloading or Overriding???";
}
}

Answers were Sorted based on User's Feedback



The following program is Overloading or Overriding? public class PolymorphismEx { public int samp..

Answer / venkat asha reddy

it is neither overloading nor overriding. it throws method
ambiguity exception while compiling

Is This Answer Correct ?    16 Yes 1 No

The following program is Overloading or Overriding? public class PolymorphismEx { public int samp..

Answer / kvsravindrareddy

Its kind of overriding, but the program will give compilation
error. why because Overriding cannot be possible within the
same class. or Duplicate method cannot possible within the
same class.

Is This Answer Correct ?    13 Yes 5 No

The following program is Overloading or Overriding? public class PolymorphismEx { public int samp..

Answer / jagadish

Duplicate Method sampleMethod(int a) Error Message will display

Is This Answer Correct ?    1 Yes 0 No

The following program is Overloading or Overriding? public class PolymorphismEx { public int samp..

Answer / hemanth

Its Neither Overloading nor overriding, Because for Overloading there should some Variation in argument list and for overriding the return type(if Primitive) should be same.
int method(int a)
{
}
String method(int a)
{
}
arguments should be different for overloading
return type should be same(if primitive) for overriding

so its improper which results in compile time error.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is a container in a gui?

0 Answers  


Hai all I want to print given array in reverse order Ex: int a[]={1,2,3,4,5};display this array in reverse order.

4 Answers  


make a method which any number and any type of argument and print sum of that arguments.....

0 Answers  


What is the basically use of finally while we know it is always executed but why?

5 Answers   Oracle, TCS,


What are static initalizers in java ?

0 Answers  






Why main() method is public, static and void in java ?

0 Answers  


What is the meaning of flag day?

0 Answers  


What are inner classes or non static nested classes in java?

0 Answers  


Hi, well i am unable to understand that why it is mandatory to have same hashcode, if two objects are same? Thanks in advance.

5 Answers  


Explain about complier design(phases)

0 Answers   Aditi Placement Service,


Does printwriter create a file?

0 Answers  


What is the default value of the local variables?

0 Answers  


Categories