System.out.println():This is similar to System.out.print(), but it adds a new line after printing. It's like hitting the enter key after typing each line.
String concatenation: This refers to combining multiple strings together using the "+" operator. It's like gluing different pieces of text together to form one longer piece.
Escape sequences: These are special characters used within strings to represent non-printable characters or formatting instructions. For example, "\n" represents a new line and "\t" represents a tab space.