hello folks,
question: An overloading method must have a diferent parameter list and same return type as that of the overloaded method.
answer: false
explanation: There is no restriction on the return type. If the parameters are different then the methods are totally different (other than the name) so their return types can be anything.
well... isn't it violate the rule of overloading if the return type is different?
so, is the answer "true"?