class Main { public static void main(String args[]){    final int i;    i = 20;    i = 30;    System.out.println(i); }} - Study24x7
Social learning Network
684 followers study24x7 22 Mar 2019 12:24 PM study24x7 study24x7

class Main { public static void main(String args[]){
    final int i;
    i = 20;
    i = 30;
    System.out.println(i);
 }
}

A

30

B

Compiler Error

C

Garbage value

D

0

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles