Object-Oriented Programming Terms Review

123456789101112
Across
  1. 1. the method name of the constructor (without underscores)
  2. 3. the required first parameter of any class method, and the beginning of the name of any instance variable.
  3. 4. the code implementation of an object template that creates instance variables and methodsa template for a set of objects with the same behavior.
  4. 6. a method that returns or prints out information about an object without changing the object in any way.
  5. 8. what instance variables store
  6. 9. ________ variable: a storage place for information in a class
  7. 11. method that initializes the instance variables of an object and is automatically called whenever an object is created
  8. 12. a programming style in which tasks are solved by writing classes and using objects (abbreviation)
Down
  1. 1. the process that creates of an object
  2. 2. another name for a function that lives inside a class
  3. 5. the method name that overrides print (without underscores)
  4. 7. An instance of a class with its own specific set of data stored in instance variables
  5. 10. a method that changes an object by changing values of instance variables