✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What is the result of the following code?
public class Test {
public static void main(String[] args) {
char c = 'A';
int i = 5;
System.out.println(c + i);
}
}
A. Compilation Error B. A5 C. 70 D. 65