1. What gets printed when the following program 
   is compiled and run? 

class Test {
public static void main(String args[]) {
    int i;
    do {
        i++;
    } while (i < 0);
         System.out.println(i);
}
}

Select 1 correct answer:
A. The program does not compile as i is not initialized. 
B. The program compiles but does not run. 
C. The program compiles and runs but does not print anything. 
D. The program prints 0. 
E. The program prints 1.