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