Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Java | final keyword | Question 2

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Output of following Java program




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


(A) 20
(B) Compiler Error
(C) 0
(D) Garbage value


Answer: (A)

Explanation: There is no error in the program. final variables can be assigned value only once. In the above program, i is assigned a value as 20, so 20 is printed.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 25 Oct, 2021
Like Article
Save Article
Similar Reads