Question:What will be the output of the program?
class Test 
{
    public static void main(String [] args) 
    {
        int x=20;
        String sup = (x < 15) ? "small" : (x < 22)? "tiny" : "huge";
        System.out.println(sup);
    }
}
 

A small 

B tiny 

C huge 

D Compilation fails 

+ Answer
+ Explanation
+ Report
Total Preview: 1186

Copyright © 2024. Powered by Intellect Software Ltd