Java Programming Language MCQ Java Control Flow
⚠ Report ✓ Question Verified Copy Link
public class Test{ static public void main(String args[]){ //line 2 int i, j; for(i=0; i<3; i++){ for(j=1; j<4; j++){ i%=j; System.out.println(j); } } } }
Learn More MCQ Questions from Java Programming Language MCQ Java Control Flow