Which of these statements are true about strings?

We can create them with a string literalWe can repeat them with a * signWe can use them for arithmetic operationsWe can subtract them with a - operator

Brilliant! We can create strings with a string literal and repeat them with the multiplication operator but we can't use them for arithmetic operations.

Close! We can create strings with a string literal and repeat them with the multiplication operator, but we can't use them for arithmetic operations.