I hava Overloading question.
If exam ask me, Overloading must same return type ? (True or False)
My example:
class
Test {
public static void main (
String args[]) {}
public void amethod(int i, String s) {}
public int amethod(byte i, char s) {return -1; } //compile ok
// public int amethod(byte i, char s) {} not compile
}