CS.11.01

123456789101112131415161718192021222324252627282930313233
Across
  1. 3. A method in the String class that converts all of the characters to lowercase
  2. 6. %
  3. 8. Parameters that are declared in a method
  4. 10. Converting a char to an int, for example
  5. 12. A method in the Scanner class that will collect an int from keyboard input
  6. 15. int age; for example
  7. 16. What data type represents text?
  8. 18. Symbols that indicate the start and end of a method, for example
  9. 20. age = 17; for example
  10. 24. A value modulo 10 will tell us the
  11. 27. --
  12. 28. What data type consists of a letter with a single quotation mark on either side?
  13. 29. A method in the String class that returns whether or not a String contains a substring
  14. 30. What "\n" represents
  15. 31. A value modulo 2 will tell us whether the value is
  16. 33. Symbols that indicate that something is a method
Down
  1. 1. Parameters that are passed to a method when it is called
  2. 2. A way of joining a String and another data type together to create a new String
  3. 4. A method in the String class that returns a substring of a String
  4. 5. +=, -=, *=, /=, for example
  5. 7. A method in the String class that returns the character at a specific index
  6. 9. What type of data is the String data type?
  7. 11. What data type can have a value of -1, 0, or 1 assigned to it?
  8. 13. A method in the Integer class that can take a String and convert it to an int
  9. 14. What data type can have a value of either true or false?
  10. 16. A method in the String class that is overloaded
  11. 17. "Sad Keanu", for example
  12. 19. A method in the String class that returns the length of a String
  13. 21. What class in Java can be used to collect input from what a user types on the keyboard?
  14. 22. What type of data are the following data types? Int, char, boolean, and double.
  15. 23. Converting a double to an int, for example
  16. 25. ++
  17. 26. A method in the String class that converts all of the characters to uppercase
  18. 32. Converting one data type to another data type