Comp Sci 1 First Semester Crossword

1234567891011121314151617181920212223242526272829
Across
  1. 2. A group of programming statements that perform a specific task
  2. 5. Examples of ______ operators are >, <=, !=
  3. 8. This keyword allows us to write code that repeats
  4. 11. This word denotes that the method doesn't return anything
  5. 13. The actual values passed into a method
  6. 16. To execute the code within a method (other than the main method), you need to ______ it
  7. 17. The code inside the for loo
  8. 19. The loop ______ is the variable used to regulate how many times the loop runs
  9. 20. The middle part of a for loop declaration
  10. 21. Where a variable exists and is usable
  11. 23. By declaring these when declaring a method, we can pass values into that method
  12. 25. The type the Math.round method returns
  13. 27. A data type that holds whole numbers
  14. 28. When you give a variable that already stores a value a new value, you ______ it
  15. 29. The ! symbol stands for ______
Down
  1. 1. When you ______ a variable, you specify its type and name
  2. 3. This method rounds down
  3. 4. This method allows us to use exponents
  4. 6. Using a plug sign to join two Strings is called ______
  5. 7. Causes your program to not compile or run
  6. 9. How many values can be returned from one method?
  7. 10. Text in a program that doesn't get compiled; only programmer sees it
  8. 12. A piece of memory with a name and a type, whose purpose is to store a value
  9. 14. Math operator that finds the remainder when you divide two numbers
  10. 15. A data type that holds characters
  11. 18. A data type that holds decimal numbers
  12. 19. This method rounds up
  13. 22. This word specifies that we want to pass a value back from the method
  14. 24. When you ______ a variable, you give it a value to store
  15. 26. The programming language we use