Java Basics

123456789101112131415161718192021222324
Across
  1. 4. Item that is used to repeat a segment of code over and over again.
  2. 5. Name of this symbol %
  3. 6. Type of loop that only contains a condition.
  4. 7. Datatype used to store either true or false.
  5. 9. The command used to get a decimal number inputted from the user.
  6. 10. The program we use to create Java programs.
  7. 13. These are used to surround conditions for ifs, fors, and whiles.
  8. 15. The item used to get input from the user.
  9. 17. Conditional used to do something once if a condition is true.
  10. 20. Programming Language
  11. 21. Datatype used to store 0 or more letters, numbers, or symbols.
  12. 22. The command used to output something and then move to the next line.
  13. 24. The command used to get letters, numbers, or symbols inputted from the user.
Down
  1. 1. This symbol is used at the end of all statements.
  2. 2. Datatype used to store decimal numbers.
  3. 3. Part of code that evaluates to true or false (x > 10).
  4. 8. The command used to output something, remaining on the same line after printing.
  5. 10. Conditional used when all the other connected conditions are false.
  6. 11. Name for these symbols ||
  7. 12. The command used to get a whole number inputted from the user.
  8. 14. Name for these symbols &&
  9. 16. Datatype used to store a single letter, number, or symbol.
  10. 18. Type of loop that usually has a start, condition, and increment/decrement included.
  11. 19. The method where all programs begin.
  12. 23. Datatype used to store only whole numbers.