Read Chapter 2 in the textbook (specifically: Sections 2.1-2.5, 2.9-2.13, 2.15; in other words, for now you can skip Sections 2.6, 2.7, 2.8, 2.14) and then answer the following questions.
int age = 21;
double pi = 3.1415;
double radius = 2.7;
String phrase = "To be or not to be";
char letter = 'X';
2.0 * pi * radius
"phrase is " + phrase.length() + " characters long"
phrase.indexOf("not")phrase.substring(3, 12)
phrase + ", that is the question."
age / 4
age % 4
(age % 30) - (age / 30)
Please enter today's date: Sunday, October 3
Today is Sunday, October 3. What a great day!