What will the following code print out?

public class Test {
   private void division(int a, int b) {
      int result = a / b;
      System.out.println(result);
   }
   public static void main(String[] args) {
      division(2, 0);
   }
}
Explanation
Compilation error. Method main is static therefore it can't call the non-static method.

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по Java
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты