What is the output of the following code when compiled and run? Select two correct answers. public class Question01 { public static void main(String[] args){ int y=0; //line 1 int x=z=1; //line 2 System.out.println(y+","+x+","+z); //line 3 } }
Prints 0,1,1
Error during compilation at line 1
E. Error during compilation at line 2
Error during compilation at line 3