public class tester static void


public class Tester {

static void test(int[] a) {

int[] b = new int[2];

a = b;

System.out.print(b.length);

System.out.print(a.length);

}

public static void main(String[] args) {

int[] a = new int[5];

test(a);

System.out.print(a.length);

}

}

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: public class tester static void
Reference No:- TGS0175389

Expected delivery within 24 Hours