Leave a Reply 2

Your email address will not be published. Required fields are marked *


Ryan

Ryan

Ques…
public class App {
public static void main(String[] args) {
int i = 10;
int j = 20;
int k = j += i / 5;
System.out.print(i + ” : ” + j + ” : ” + k);
}
}

Answer…
B