Elevate Crossword Puzzle-1

12345678910111213141516171819202122232425
Across
  1. 2. Datatype used to store a single letter, number, or symbol.
  2. 6. These are used to surround the conditions in if, for, and while statements.
  3. 7. Name of this symbol %
  4. 11. Datatype used to store decimal numbers.
  5. 14. Part of code that evaluates to true or false (e.g. x > 10).
  6. 15. IDE used to edit and compile Java programs
  7. 16. Denotes that a segment of code is repeated over and over again
  8. 18. Programming Language
  9. 20. Name for these symbols ||
  10. 21. This statement specifies a block of code to be executed if an If condition is false
  11. 23. Method used to get a whole number inputted from the user.
  12. 24. Type of loop that usually has a start, condition, and increment/decrement included.
  13. 25. Conditional used to do something once if a condition is true.
Down
  1. 1. This statement continually executes a block of statements while a particular condition is true
  2. 3. The method where all programs begin.
  3. 4. Datatype used to store only whole numbers.
  4. 5. Method used to get a decimal number input from the user
  5. 8. Class which helps to get input from the user.
  6. 9. This symbol is used at the end of all statements
  7. 10. The command used to output something and then move to the next line.
  8. 12. Datatype used to store either true or false
  9. 13. The command used to get letters, numbers, or symbols inputted from the user.
  10. 17. Method used to output something to the console, and keep the cursor on the same line
  11. 19. Name for these symbols &&
  12. 22. Datatype used to store 0 or more letters, numbers, or symbols.