What is a signature of the following method:
public static int abs(int a) {
return (a < 0) ? -a : a;
}What is a signature of the following method:
public static int abs(int a) {
return (a < 0) ? -a : a;
}Create a free account to access the full topic