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