✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Quel est le résultat de l’extrait de code suivant ?
What is the result of the following code snippet?
public class Main {
public static void main(String[] args) {
String str = "Java";
str.concat(
" Programming");
System.out.
println(str);
}
}