✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class SomeClass {
public static void main (String [] args) {
SomeClass c = new SomeClass ();
c.f1 (1, 1);
}
public void f1 (int b, long c) {
System.out.println ( "1");
}
public void f1 (long b, int c) {
System.out.println ( "2");
}
public void f1 (int b, int c) {
System.out.println ( "3");
}
public void f1 (long b, long c) {
System.out.println ( "4");
}
}
(Java)