Programming Week 1-3

123456789101112
Across
  1. 3. Default access for class members in C++
  2. 4. The part of a program where a particular name or identifier is considered valid.
  3. 6. Keyword within a method that identifies the point where a value will be returned. Also immediately exits that method's execution.
  4. 10. The value assigned to a parameter when a function is executed.
  5. 11. A piece of code that performs a particular task and has been stored and defined as a code block.
  6. 12. A return type used when a method does not require any data be returned.
Down
  1. 1. Methods and variables stored immediately within a class. They can typically access one another.
  2. 2. A unique identifier that defines the purpose of a method.
  3. 5. Placeholder variable declarations that are used to pass values to a method.
  4. 7. A method with the same identifier of an existing method, but a different parameter list and/or return type.
  5. 8. Executing a pre-defined method within your code by referring to its identifier and optional parameters.
  6. 9. Another name for a method.