CPSC 421 OOP Callbacks

12345678910111213
Across
  1. 5. For free functions, the callbacks are _____ _____
  2. 8. A _____ is a bit of computation that a function/method can call when appropriate in the implemented algorithm
  3. 10. In the Sort with Callback example, the Client calls the ____() once
  4. 12. In the sort() example, sort calls the code in the _____ multiple times
  5. 13. A class that acts like a function
Down
  1. 1. Callbacks that are methods use ______ to member functions
  2. 2. Callbacks permit customization of the ______ in a function/method
  3. 3. In the Common Control Flow example, the ____ calls functions in the Libraries
  4. 4. Callbacks are not a ____programming mechanism
  5. 5. The order of function calls from main() in the Common Control Flow example (name of each function with no parentheses)
  6. 6. The name of the callback in the sort() example
  7. 7. In the Common Control Flow example, the Libraries never call the _______
  8. 9. Callbacks that are anonymous functions are ____ callbacks
  9. 10. In the Sort with Callback example, the ____() may call the Client multiple times
  10. 11. The order of returns from function calls from main() in the Common Control Flow example (name of each function with no parentheses)