The document discusses various methods for working with C++ strings, including:
1. Reading strings from the keyboard using getline() and specifying the string size and optional terminating character.
2. Comparing strings using operators like ==, !=, <, <=, >, >=.
3. Accessing individual characters of a string using the index operator [].
4. Obtaining the length of a string using length() or size(), checking if a string is empty, and extracting substrings.