Basic Java
Across
- 4. Java type that represents a real number with decimal values
- 7. Java type that represents a string of characters
- 9. Defining a variable for the first time
- 11. Lets us repeat code as long as something is true
- 13. Control structure that lets us run either one section of code or another depending on a test
- 15. Used to make comparisons between values
- 19. Code that you put inside an if statement or while-loop
- 20. A way to repeat code in your program
- 23. Logical operator that ANDs two boolean values
- 24. A loop, most often set with while(true), that has a break statement in the loop body
- 26. Giving a variable an initial value
Down
- 1. Java method that lets us print output to the user, without ending the line printed
- 2. Logical operator that negates a single boolean value
- 3. Java method that lets us read in a decimal value input from the user
- 5. A symbol or container that holds a value
- 6. Logical operator that ORs two boolean values
- 7. Java method that lets us print out a line of output to the user
- 8. Java method that lets us read in an integer input from the user
- 10. Java type that can either be true or false
- 12. Used to make logical associations between boolean values
- 14. Java method that lets us read in a true or false value input from the user
- 15. Turning something of one type into another type
- 16. Java type that represents an integer
- 17. Updating the variable’s value
- 18. Lets us repeat code a fixed number of times
- 21. Java method that lets us read in a line of input from the user as a String
- 22. Lets you ask a question to the program and only run code if the answer is true
- 25. Java type that represents a single character