3460:421 OOP Method Naming Standards

123456789101112131415161718192021
Across
  1. 3. A good guide for the maximum number of words in an identifier is _____
  2. 6. The name repr() is an example of an ______
  3. 9. The name should not contain _____ such as cuttingCorners()
  4. 10. ____ abbreviations are unfamiliar abbreviations that are very hard for programmers to understand
  5. 12. Only standard _____, such as getFIFO(), should be used in a program
  6. 14. Research clearly shows improved _____ with full-word identifiers
  7. 16. For a banking application you name a function rover() after your dog. This is an example of a _____ ____
  8. 17. There were very slight differences based on developer _____
  9. 19. A naming style where we capitalize each word except for the first
  10. 20. There was no variation on the developer's agreement with the standards across multiple _____ ____
  11. 21. One exception to the rule for the length of a name are ____-_____ methods
Down
  1. 1. The function name nestBorderFromLeftSide() is an example of a _____ _____
  2. 2. The function name copyTarFile() is an example of a ____ ____
  3. 4. Choose ____ over entertainment value
  4. 5. A naming style where words are separated by a '_'
  5. 7. The function getCachedNode() is an example of the standard ___ ____
  6. 8. Words used in the function name are actual _____ terms
  7. 11. There is ____ support for the standards shown
  8. 13. Use full words instead of ____ ____ names
  9. 15. Which naming style has a slight advantage?
  10. 18. Using slang and idioms is a _____ practice