Data Types and Variables
The following program:public class Test{ static boolean isOK; public static void main(String args[]){ System.out.print(isOK); } }

Prints true
Prints false
Will not compile as boolean is not initialized
Will not compile as boolean can never be static

ANSWER DOWNLOAD EXAMIANS APP