Which of these statements are true about strings?

Strings are sequences of charactersWe create them by surrounding them with single or double quotesTheir length() method returns the number of characters in a stringWe use them for arithmetic operations

Good stuff! Strings are sequences of characters that we create with quotes. length, however, isn't a method but a property that doesn't use parentheses.

Close! Strings are sequences of characters that we create with quotes. length, however, isn't a method but a property that doesn't use parentheses.