Sail E0 Webinar
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 .  None of these
C .  Compilation fails because of an error at line 3
D .  An exception is thrown at runtime.
E .  Compilation fails because of an error at line 5
Answer: Option A

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

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

Latest Videos

Latest Test Papers