What will be the output of the following program?
public class BooleanValues {
public static void main(String args[]) {
Float flo = (float) Math.sqrt(-20);
System.out.println(flo);
boolean b = isNaN(flo);
System.out.print(b);
}
static public boolean isNaN(float k) {
return (k != k);
}
}