SCJP Module-5 Question-2


 

SCJP Module-5 Question-2

The given program below will test your basic understanding of Java program and the program logic.

The given program below will test your basic understanding of Java program and the program logic.

Given a sample code:

1    public class Sample{
2    public static void main(String args[]) {
3    int i = 1, j = 2;
4    i++;
5    j--;
6    if (i / j > 1)
7    i++;
8    System.out.println(i + j);
}}

What will be the result of above code ?

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

Answer:

(3)

Ads