✏️ Explanatory Question

Write the output of the following code :-

String x;
String str = "INFORMATION";
x = str.concat("PRACTICE");

System.out.println(x.length());
System.out.println(x.toUpperCase());

👁 65 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

Output:
19
INFORMATIONPRACTICE