Discussion Forum : Strings
Question - What will be the output?
1. public class Test{
2. public static void main(String args[]){
3. Object myObj = new String[]{"one", "two", "three"};
4. {
5. for(String s : (String[])myObj)
6. System.out.print(s + ".");
7. }
8. }
9. }
Options:
A .  one.two.three.
B .  Compilation fails because of an error at line 3
C .  Compilation fails because of an error at line 5
D .  An exception is thrown at runtime.
E .  None of these
Answer: Option A

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

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