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

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

ANSWER DOWNLOAD EXAMIANS APP