1
What will be the output of the following program?
class TCA {
public static void main(String[] args) {
long L = 22;
int e = L + 3;
boolean m = L < e; float o = 12.5f; double n = o * 2; System.out.println(L + "e" + m + "o" + n); } }
22etrueo25.0
2225true12.525.0
Some other output
Compilation Error