✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Скільки екземплярів класу String буде створено при досягненні рядка 7:
1. class MyClass73 {
2. public static void main(String[] args) {
3. String s = “Java”;
4. s.concat(“ SE 6”);
5. s.toLowerCase();
6. System.out.print(s);
7. // how many?
8. }
9. }