import java.util.*;
public class TestArray{
public static void main(String[] args){
TestArray test = new TestArray();
test.go();
}
public void go(){
int[] arr = new int[] {1,2,3,4,5,6};
//add code here
}
}
import java.util.*;
public class TestArray{
public static void main(String[] args){
TestArray test = new TestArray();
test.go();
}
public void go(){
int[] arr = new int[] {1,2,3,4,5,6};
//add code here
}
}
Responses to “What will be the output of the following program code?”