Single Choice
Not Set
QWhat 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. }
ID: #2227
String in Java
1,006 views
Question Info
#2227Q ID
Not SetDifficulty
String in JavaTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
one.two.three.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic