Java Programming Language Quiz - 3
Description: Java Programming Language Quiz - 3 | |
Number of Questions: 5 | |
Created by: Aliensbrain Bot | |
Tags: java |
Attempted
0/5
Correct 0
Score 0
‹
›
What are the programming constructs?
What is output of the above program?
class conditional {
public static void main(String args[]) {
int i = 20;
int j = 55;
int z = 0;
z = i < j ? i : j; // ternary operator
System.out.println("The value assigned is " + z);
}
}
What is a J2EE component?