Java Crossword

123456789101112131415161718192021
Across
  1. 5. A data type that can only store true and false values.
  2. 6. When constructors are invoked using the new keyword.
  3. 8. The simplest sorting algorithm in java.
  4. 10. Have states and behaviors
  5. 12. A keyword used in a class or method definition, which specifies that the method/class is not going to be instantiated, but should be inherited by other methods or classes
  6. 15. Defined inside methods, constructors, or blocks
  7. 16. Has a name and a return type.
  8. 17. Within a class outside any method and initialized when the class is instantiated
  9. 18. Stores data does is not all the same type and is often represented in a table.
  10. 19. A variable _ with a variable name with an object type.
  11. 20. Compares the first element with each following element of the array.
  12. 21. Search A process that utilizes the concept of splitting intervals in half as a means of finding the « key » value ASAP.
Down
  1. 1. A primitive data type in java
  2. 2. Declared within a class out side any method with the static keyword
  3. 3. A blue print from which individual objects are created
  4. 4. Every class in java has this
  5. 7. When the 'new' keyword is followed by a call to a constructor it is called this
  6. 9. A primitive type of the size of eight bits:
  7. 11. The name of what marks a block of code in switch statements.
  8. 13. The action where the 'new' keyword is used to create the object.
  9. 14. Object-Oriented Language (Another name for coffee)