Top

Discussion

What will be the output of the program?

class Test 
{
    public static void main(String [] args) 
    {
        int x=20;
        String sup = (x < 15>

  • A.small
  • B.tiny
  • C.huge
  • D.Compilation fails

Answer: B

This is an example of a nested ternary operator. The second evaluation (x < 22> is true, so the "tiny" value is assigned to sup.

No comment is present. Be the first to comment.
Loading…

Post your comment