A

Admin • 828.70K Points
Coach

Q. Determine output:
public class Test{
public static void main(String args[]){
String str = null;
if(str.length() == 0){
System.out.print("1");
}
else if(str == null){
System.out.print("2");
}
else{
System.out.print("3");
}
}
}

  • (A) Compilation fails.
  • (B) "1" is printed.
  • (C) "2" is printed.
  • (D) An exception is thrown at runtime.
  • Correct Answer - Option(D)
  • Views: 20
  • 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.