Java - Strings and String Handling
Given this code:
What does this demonstrate about strings in Java?
String s = "hello";
s = s.toUpperCase();
System.out.println(s);
What does this demonstrate about strings in Java?
