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