Programming Language String in Java Question #2227
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

Choose the Best Option

Click any option to instantly check if you're correct.

  • 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.
Correct Answer

Explanation

one.two.three.

Share This Question

Challenge a friend or share with your study group.