✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la sortie du programme suivant ?
System.out.print("a");try { System.out.print("b"); throw new IllegalArgumentException();} catch (ArithmeticException e) { System.out.print("c");} finally { System.out.print("d");}System.out.print("e");