Question: public class test { public static void main(String args) { } int x, y; x = 4; y = 6; System.out.println(another(x, y)); // Line
public class test { public static void main(String args) { } int x, y; x = 4; y = 6; System.out.println(another(x, y)); // Line 1 System.out.println(another2(x)); // Line 2 static int another(int a, int b) { int i, j; j = 0; for (i=a; i
Step by Step Solution
There are 3 Steps involved in it
Lets analyze the given Java code snippet 1 Line 1 x is initialized to 4 and y is ... View full answer
Get step-by-step solutions from verified subject matter experts
