Single Choice Not Set

QWhat will be the output after compiling and running following program code?
public class Test{
      static int a;
      public static void main(String[] args){
            System.out.println("one");
            call(1);
      }

      static void call(int a){
            this.a=10;
            System.out.println("two "+a);
      }
}

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

Choose the Best Option

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

  • A one two 1
  • B one two 10
  • C one two 0
  • D Compile time error.
Correct Answer

Explanation

Compile time error.

Share This Question

Challenge a friend or share with your study group.