Ch 5 Key Terms Compsci

12345678910111213141516171819202122232425262728
Across
  1. 3. The method body in which the parameter is located that determines the visibility of a variable within the code.
  2. 8. A piece of Python program text that is executed as a unit.
  3. 9. Created and used just like value-returning functions except they do not return a value after the function executes.
  4. 10. Solves a large problem by recursively breaking it down into smaller sub-problems until they can be solved directly.
  5. 11. Variables that are declared outside of a function
  6. 12. A special statement that you can use inside a function or method to send the function's result back to the caller.
  7. 15. An expression containing the function name followed by the function call operator, ().
  8. 16. Constant that returns the Eular's number: 2.718281828459045.
  9. 19. A special kind of variable used in a function to refer to one of the pieces of data provided as input to the function.
  10. 20. The code that creates or describes the purpose of the function.
  11. 22. Blocks of code written to carry out a specified task.
  12. 23. Arguments are passed in the order of parameters.
  13. 25. Enables you to import a module into your code.
  14. 26. A literal value to which you assign a name.
  15. 27. Statement used as a placeholder for future code.
  16. 28. Specifies the name of the function, and any arguments (inputs, or parameters) into the function.
Down
  1. 1. Through the "benefits of using ___," you can avoid rewriting the same logic or code repeatedly in a program.
  2. 2. Constant that returns the value of PI: 3.141592653589793.
  3. 4. The variables that are declared inside the function.
  4. 5. Defines the structure of a Python program and indicates a block of code.
  5. 6. A function that returns a value back to where it was called.
  6. 7. Used to define a null value, or no value at all.
  7. 13. The value that are sent to the function when it is called.
  8. 14. A built-in module in the Python 3 standard library that provides standard mathematical constants and functions.
  9. 17. A designation for a defined function that generally describes the purpose of the created function.
  10. 18. The context in which that variable is visible/accessible to the Python interpreter.
  11. 21. A file containing Python code, definitions of functions, statements, or classes.
  12. 24. An in-built module of Python that is used to generate random numbers in Python.