Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

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;
}
}

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]

Answer: d
Explanation: The value at the 0th position will be assigned to the variable first.

Join The Discussion