Object Oriented Crossword (by Cole b.)

12345678910111213141516
Across
  1. 5. a ______ variable is visible throughout an entire program.
  2. 6. The _____ method is typically the entry point of a program in C#.
  3. 7. _____ access modifiers do not allow what follows to be accessed outside of its class.
  4. 9. the "blueprints" for creating an object.
  5. 12. a process which allows new classes to reuse and modify the behavior of already existing classes.
  6. 15. used to build an object when a new instance of said object is needed.
  7. 16. the bundling of data, with the methods that operate using that data, into one unit.
Down
  1. 1. a modelling language used in the field of object oriented programming.
  2. 2. a member of a class which is not subject to change.
  3. 3. a process used to hide the internal details of a class, to show only functionality.
  4. 4. when a new object for a class is created
  5. 8. an occurence of any object during the runtime of a program.
  6. 10. a data structure consisting of heterogeneous elements.
  7. 11. returns the value of a variable.
  8. 13. sets the value of a variable.
  9. 14. an interface which allows users to interact with a program using visuals.