A

Admin • 828.03K Points
Coach

Q. What will be the output of the following Java program?
class Abc
{
public static void main(String[]args)
{
String[] elements = { "for", "tea", "too" };
String first = (elements.length > 0) ? elements[0]: null;
}
}

  • (A) Compilation error
  • (B) An exception is thrown at run time
  • (C) The variable first is set to null
  • (D) The variable first is set to elements[0]
  • Correct Answer - Option(D)
  • Views: 18
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.