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.
(3)
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.