Basic Java

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