✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено на екран в результаті виконання?
class Main {
public static void main(String args[]) {
try {
throw new String(“A”);
}
catch(int e) {
System.out.println("Exception " + e);
}
}
}