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