Brooke's Review Game

1234567891011121314151617181920
Across
  1. 1. way to generally declare instance variables
  2. 4. class that provides a way to use primitive data types (int, char, short, byte, etc) as objects.
  3. 8. what keyword is used to declare abstract methods
  4. 10. the method to create a hierarchy between classes by inheriting from other classes
  5. 11. a sequence of characters
  6. 12. a group of objects which have common properties
  7. 13. example of an interface
  8. 15. "A" hexadecimal is what in decimal
  9. 16. "F" hexidecimal is what in decimal
  10. 17. a shared boundary across which two or more separate components of a computer system exchange information
  11. 19. a method that is invoked when an object of the class is created.
  12. 20. 00101
Down
  1. 2. provide a base for subclasses to extend and implement the abstract methods and override or use the implemented methods in __ __
  2. 3. 01011
  3. 5. an instance of a Java class, meaning it is a copy of a specific class
  4. 6. Convert 97 to octal
  5. 7. Convert 6 to octal
  6. 9. types of methods that don't require implementation for its declaration
  7. 14. example of a good abstract class (applicable to real life)
  8. 18. the ability of a class to provide different implementations of a method, depending on the type of object that is passed to the method