foo(int a)foo(int a, int b)foo(double a)foo(double a, double b)foo(int b)
More information: Lesson 6.4.3
Which of the following is the correct definition for the getAge() method which is a member of the Person class? Note that {...} means there are appropriate statements inside the curly braces.
int getAge();int Person.getAge() {...}int Person:getAge() {...}int getAge() {...}More information: Lesson 6.3.4