MCQ Single Best Answer Not Set

QWhat will be the output for the below code?
public class Test{
      static{
            int a = 5; 
      }

      public static void main(String[] args){
            System.out.println(a);
      }
}

ID: #2114 Declaration and Access Control in Java 805 views
Question Info
#2114Q ID
Not SetDifficulty
Declaration and Access Control in JavaTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A Compile with error
  • B 5
  • C 0
  • D Runtime Exception
Correct Answer: Option A

Explanation

Compile with error

Share This Question

Challenge a friend or share with your study group.