✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який буде результат компіляції та виконання фрагмента коду:
class MyClass73 {
public static void main(String[] args) {
String s = “Java”;
s.concat(“ SE 6”);
s.replace(‘6’, ‘7’);
System.out.print(s);
}
}