CS209 CROSSWORD PUZZLE!!

123456789101112131415161718192021222324252627282930313233343536373839
Across
  1. 3. A set of instructions to be carried out by a computer.
  2. 7. An 8-bit signed two's complement integer.
  3. 10. Text in a program that is not executed and is used for documentation purposes.
  4. 11. The output of the following code: public static void main(String[] args) {int x = 3;x=x+10/5;}
  5. 15. A 32-bit signed two's complement integer.
  6. 16. An error that occurs during the compilation of a program.
  7. 19. A group of eight bits.
  8. 22. A combination of letters, digits, and symbols that represent a single character.
  9. 23. A 64-bit signed two's complement integer.
  10. 26. A unit of computer memory equal to 1,024 bytes.
  11. 27. A block of code with a name that can be called and executed.
  12. 29. The process of joining two or more strings together.
  13. 30. A type of data that represents a single character.
  14. 34. A group of related classes and interfaces.
  15. 37. This is made up up of the following structure: for (initialization; test; update) {statement;...}
  16. 38. A named memory location that stores a value.
  17. 39. A keyword used to output information on the console.
Down
  1. 1. The output of this code: public static void main(String[] args) { System.out.println((11*5)%2+(16-6) * (2+ (14/7)));}
  2. 2. A data type that can hold only two values: true or false.
  3. 4. A name given to an item in your program.
  4. 5. A predefined pattern of symbols that forms a valid program in a language.
  5. 6. A unit of computer memory equal to 1,000,000 bytes.
  6. 8. 8 simple types for numbers, text, etc.
  7. 9. A Java class used to read input from various sources, such as user input from the console.
  8. 12. A sequence of characters in a program that is not executed, but provides information to other programmers.
  9. 13. A 64-bit double-precision floating-point number.
  10. 14. A 16-bit signed two's complement integer.
  11. 17. An error that occurs during the execution of a program.
  12. 18. A keyword used
  13. 20. The starting point of a Java program.
  14. 21. A method that belongs to the class rather than an instance of the class.
  15. 24. A unit of computer memory equal to 1,048,576 bytes.
  16. 25. A 32-bit single-precision floating-point number.
  17. 28. A device that provides data to a computer.
  18. 30. The brain of a computer.
  19. 31. A type of memory used for temporary storage while a program is running.
  20. 32. A keyword used to restrict access to a class or its members.
  21. 33. A reserved word in Java that has a specific meaning to the compiler.
  22. 35. The amount of data that can be stored in the smallest addressable unit of memory.
  23. 36. A type of data that represents a sequence of characters.