Java - Methods and Code Reusability
What will be the output of this code?
public class Test {
public static int multiply(int x, int y) {
return x * y;
}
public static void main(String[] args) {
System.out.println(multiply(3, 4));
}
}