3460:421 OOP Naming

123456789101112131415161718
Across
  1. 6. One thing about a function that does not make a function unique is the ___ ___
  2. 8. Software Engineers makes _____ about name constantly
  3. 10. _____ _____ allows us to have multiple functions with the same name
  4. 13. A name can include a _____, but not start with one
  5. 15. Naming impacts the readability and ____ of software
  6. 16. One of the 2 hard problems in computer science is _____ _____
  7. 17. Functions and methods are _____
  8. 18. For naming functions and methods we use ____
Down
  1. 1. Technical term for a name
  2. 2. For naming variables, parameters, types, classes, fields, classes, files we use ____
  3. 3. There is no ______ name mangling for C++
  4. 4. We want to stick with _____ letters
  5. 5. Tool to demangle a name, convert from the mangled name back into a C++ form
  6. 7. name _____ is how method/function names are translated into assembly labels
  7. 9. Good names reduce the ____ of development
  8. 11. Avoid starting a name with an _____ as it is reserved for system use
  9. 12. Tool to extract program symbols
  10. 14. Naming is a _____ issue for software engineering