SCJP Certification

Sun Certified Java Programmer Certification exam essentials

December 3rd, 2009

What will be the output of the following program code?

Java Questions, by Daisy Williams.

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
}
}

Share

Back Top

Responses to “What will be the output of the following program code?”

Comments (0) Trackbacks (0) Leave a comment Trackback url
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Your email address will not be published. Required fields are marked *

*