Vocab Spring 2022

1234567891011121314151617181920212223242526272829
Across
  1. 3. The values that a program provides to a function or subroutine.
  2. 5. Information or signals produced or delivered by a computer system.
  3. 7. Text or characters displayed by a program.
  4. 9. provides very precise information by including all the numbers after the decimal.
  5. 10. A style of writing where the underscore character (_) is substituted for spaces and everything is lowercase.
  6. 14. true or false
  7. 15. A specific location by order for an individual element in a list.
  8. 18. A function that is a member of a class.
  9. 19. A mathematical operator that performs division but returns the remainder.
  10. 20. A symbol in code that assigns values from the right side of an equation to what is on the left side of the equation. Assigning a value to a variable is a classic example that uses the “equal to” assignment operator
  11. 22. In programming, a named section of a program that performs a specific task.
  12. 25. Putting a function inside another function or a loop inside another loop.
  13. 26. A style of writing where the underscore character (_) is substituted for spaces and everything is lowercase.
  14. 27. A single entry of a list. An element can be different data types, such as integer, float, string, or Boolean.
  15. 29. An instance of a class.
Down
  1. 1. The set of rules that defines the combinations of symbols that are considered to be correctly structured in that language.
  2. 2. defines what a data item is or is not, such as integer, float, string, or Boolean.
  3. 4. The value a computer returns after completing a function.
  4. 6. A joining together of separate items—without changing them—into one place.
  5. 8. The kind of data stored in a variable.
  6. 11. A technique or process that manages complexity in a program or computer system.
  7. 12. A style of writing file names that avoids spaces and other characters and differentiates words based on capitalization.
  8. 13. A control flow statement that is a repeating if statement (will continue to execute indefinitely for as long as the condition being evaluated is true.)
  9. 16. A control flow statement that allows a set of instructions to be executed repeatedly (used when the number of iterations is predefined )
  10. 17. To identify errors or bugs in computer hardware or programs and fix them.
  11. 21. A function that identifies a number to start at, a number to stop at, and how much to change by each time the program executes the loop.
  12. 23. A template for creating objects.
  13. 24. A programming statement that evaluates a true/false Boolean expression to determine the next steps in a program.
  14. 28. A whole number that does not have a decimal or any digits after the decimal.