What is the result of compiling and running this program? Select the one correct answer.
public class test {
public static void main(String args[]) {
int i, j;
int k = 0;
j = 2;
k = j = i = 1;
System.out.println(k);
}
}
Selecciona una de las siguientes respuestas posibles: