Conceptually, what is a String?
A String is a data type that represents text.
Is a String a value or reference type?
Reference type
How many bytes in a String?
22 bytes
How many bytes in a character?
1 byte
What is a char?
A single text character.
Can I alter a String? How?
Strings are immutable. Once you have created a string you cannot later change that string object.
BUT
You can modify them by using substring(), concat(), replace(), trim(), etc.
Give 3 examples of reference types.
String, Scanner, Random