Java SE 8 Programmer 1Z0–808 Practice Full Test 1

© examsiri.com
Question : 81 of 84
 
Marks: +1, -0
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);
   }
}

What is the result?
Go to Question: