Q. The following program:
public class Test{
static boolean isOK;
public static void main(String args[]){
System.out.print(isOK);
}
}
β
Correct Answer: (B)
Prints false
Explanation: By default, a boolean variable will contain false.