Single Choice Not Set

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

	public static void main(String args[]){
		new Test().call();
	}

	void call(){
		this.a++;
		System.out.print(this.a);
	}
}

ID: #2113 Declaration and Access Control in Java 760 views
Question Info
#2113Q 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 Runtime Exception
  • C 5
  • D 6
Correct Answer

Explanation

Compile with error

Share This Question

Challenge a friend or share with your study group.