Exam 1 review

12345678910111213141516171819
Across
  1. 3. This XML tag describes a value given to a method to use.
  2. 5. A _____ diagram shows the hierarchy of how a group of related classes inherit from each other.
  3. 7. C#'s 32-bit floating point type
  4. 8. C#'s special type for monetary values
  5. 9. A ________ is how C# provides public access to a private field
  6. 11. Use this word when you want to allow derived classes to make a custom version of a base class method
  7. 13. This word allows you to create a type with custom values
  8. 14. Use this word when you actually create in a derived class a custom version of a base class method
  9. 15. This type of statement in C# allows for multiple-selections based on the value of a variable.
  10. 16. These type of items are capitalized in C#
  11. 18. A ________ is designed to be a base class for many classes, but to never have any objects of that specific type instantiated.
  12. 19. An accessor in C# used to find the value of a property
Down
  1. 1. This C# keyword acts like the parameter for a set accessor.
  2. 2. C#'s 64-bit floating point type
  3. 4. This XML tag describes the value given back by a method
  4. 6. This XML tag is used to describe the purpose of a method
  5. 9. This describes how a base class variable can often take the form of one of its derived class types
  6. 10. These type of items begin with a lower-case letter in C#
  7. 12. This part of a switch statement is used when there are no cases that match the variable's value
  8. 15. An accessor in C# used to change a property's value
  9. 17. This keyword is used in C# to call a base-class's constructor from a derived class's constructor