Question 6:

What is the output?

---

String s = "Java";
s.toUpperCase();
System.out.println(s);

---

A. "JAVA"
B. "Java"
C. "java"
D. Compile error
