Multiple choice Which of the following statements is false regarding method overloading? When a class has multiple methods with the same name but different input parameters, then such methods are considered to be overloaded. Method overloading increases the readability of a program. Method overloading can be done by changing the number of input parameters. Method overloading can be done by changing the return type of method. Main() method can be overloaded. Reveal answer Fill a bubble to check yourself D Correct answer Explanation This is a false statement. Method overloading cannot be done by changing the return type of a method.