Home Tutorial Java Scjp Part5 SCJP Module-5 Question-5

 
 

SCJP Module-5 Question-5
Posted on: July 12, 2010 at 12:00 AM
The program given below will test your understanding of do while loop and basic flow of Java program.

Given a sample code:

1    public class Test {
2    public static void main(String args[]) {
3    int j;
4    do {
5    j++;
6       }
7    while(j < 0);
8    System.out.println(j);
}}

What will be the result of above code ?

(1) The program compilation fails because of line number 3.
(2) 1
(3) 3
(4) The program compilation fails because of line number 5.

Answer:

(4)

Explanation:

This program will have compile time error that variable j might not have been initialized.

Related Tags for SCJP Module-5 Question-5:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.