1

Suppose a is variable of any type. How will you print the value of a on the console??

  • System.out.println(“a”);

  • System.out.println(“+a”);

  • System.out.println(a);

  • System.out.Println(a);