Unit 10 Strings Crossword

1234567891011121314151617
Across
  1. 2. This method allows us to find where a character is inside of a string
  2. 3. The method that capitalizes a string
  3. 5. Write out a command that would access the whole string of a variable named phrase
  4. 7. This method allows us to check if a string is lowercased
  5. 8. Write out a command that would access just the last index of a variable named phrase
  6. 10. A smaller piece of a string taken from a larger string
  7. 12. A command/function that allows the user to enter a string into the program
  8. 13. Like functions, these end in a set of parathesis and allow us to alter strings in different ways
  9. 14. These go around indexes, allowing us to choose what index or indexes we would like to access
  10. 17. The method that lowercases a string
Down
  1. 1. The method that allows a programmer to determine the length of a string
  2. 4. Write out a command that would access just the first index of a variable named phrase
  3. 6. This method allows us to swap the case of a string
  4. 7. This keyword allows us to check for a character or substring inside of another string
  5. 9. This method allows us to check if a string is capitalized
  6. 11. The "address" a character inside of a string variable is stored
  7. 15. Taking part of a string to create a temporary string, without changing the original value
  8. 16. This type of loop can allow us to access each character in a string