3460:421 OOP Algorithmic Decomposition

1234567891011121314151617181920212223242526
Across
  1. 1. Parameters and local variables are ______ when the function is called
  2. 3. In decomposition, when performed correctly, the smaller parts are easier to _____
  3. 6. In C++ an IN parameter can be passed by _____
  4. 7. In decomposition, when performed correctly, the smaller parts are easier to _____
  5. 8. Part of the interface to a function
  6. 11. In decomposition, when performed correctly, the smaller parts are easier to _____
  7. 13. Kind of a parameter where data is passed only to the function
  8. 14. Hide the internal details of a function and only expose the minimal interface is _____ _____
  9. 15. Kind of a parameter where data is passed only back from the function
  10. 16. In decomposition, when performed correctly, the smaller parts are easier to _____
  11. 17. In decomposition, when performed correctly, the smaller parts are easier to _____
  12. 19. In decomposition, when performed correctly, the smaller parts are easier to _____
  13. 21. Part of the interface to a function is the _____ type
  14. 23. Generally something that algorithms are not concerned with, but code is
  15. 25. Algorithmic decomposition is a lower-level approach needed for ___/___
  16. 26. Algorithmic decomposition only _____ so far
Down
  1. 1. In C++ an IN parameter can be passed by ____ _____
  2. 2. In C++ an OUT parameter can be passed by _____
  3. 4. Breaking a complex problem or system into a collection of smaller parts
  4. 5. Breaking a complex algorithm into a collection of smaller algorithms
  5. 9. Has a high level of difficulty
  6. 10. In C++ an OUT parameter can be passed via a _____
  7. 11. Kind of a parameter where data is passed both to and from a function is ___/____
  8. 12. A possible tradeoff for decomposition
  9. 18. Parameters and local variables are _____ when the function call returns
  10. 20. Part of the interface to a function
  11. 22. In general, free functions do not have any internal "____" between calls
  12. 24. Has many parts