多选题
What is the output of the following code segment?
String[] numbers = {"One", "Two", "Three"};
System.out.println(numbers[3]+" "+numbers[2]+" "+
numbers[1]);
- A. One Two Three
- B. Three Two One
- C. A compile time error will be generated.
- D. A runtime exception will be thrown.