CSA Java Chapter 2 Vocab

1234567891011121314151617181920
Across
  1. 1. Defines the attributes for an object
  2. 7. An instance of a class with defined attributes
  3. 8. A class that can transform a primitive value into an object
  4. 9. A programmer-defined data type. Describes the formal attributes and behaviors of that type.
  5. 11. When a method or constructor has the same name but different parameter lists
  6. 12. A string method used to search a string for specific characters
  7. 14. A string method used to determine the alphabetic order of two strings
  8. 15. Code that is used to create new objects and initialize the objects attributes
  9. 17. A class built into the Java.lang package that helps us do calculations
  10. 19. A string method used to determine if two strings are the same
  11. 20. A method that does not return a value
Down
  1. 2. A method that can be called without creating an object of the class
  2. 3. Used to access an objects methods
  3. 4. Java keyword used to create objects with a call to the constructor
  4. 5. Defines the behavior or actions of an object
  5. 6. Values returned by a method once it has done its job
  6. 10. The values passed to a method so that it can do its job
  7. 13. String values do not change once initialized. They are referred to as ____
  8. 16. A string method that allows access to part of a string
  9. 18. Used to indicate a reference does not refer to any object yet