✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche ce code ?
public class Exceptions_chapitre1 { public static void main(String args[]) { try { System.out.print("J’adore" + " " + 1 / 10); } catch(ArithmeticException e) { System.out.print("Java"); } }}