Consider the following methods:

public static void printSport(double n) {
System.out.print("football ");
printSport((int)(n));
}
public static void printSport(int n) {
System.out.print("basketball ");
}

What is output by the method call printSport(8)?


1. football
2. basketball
3. football basketball
4. football football basketball basketball
5. basketball football