First Semester Vocabulary

12345678910111213141516171819202122232425262728293031323334
Across
  1. 1. method that deletes one shape from a group
  2. 5. a type of function that is called inside another function to assist it in performing its tasks
  3. 7. keyword to test if at least one of two conditions is true
  4. 8. method that removes all shapes from a group at once
  5. 9. a block of code that can take inputs to perform a certain task
  6. 11. the person who tests a program and presses the mouse or key to make things happen, without seeing or understanding the code
  7. 12. the actual values passed into a function used to perform an action
  8. 13. the naming case when the first letter is lowercase, and then the first letter of each new word is in uppercase
  9. 16. the parameter for onKeyPress and onKeyRelease
  10. 20. a test used inside an if or elif statement that results to true or false
  11. 22. method that creates a new shape for a group
  12. 23. keyword to make some test case the opposite of its result, or false
  13. 26. type of object that combines shapes to be moved or changed as one shape
  14. 27. type of or that tests if either but not both test cases are true
  15. 28. a type of function that performs some action that is visible in the canvas or console
  16. 29. the method called on the app to halt all events
  17. 31. keyword to test if two conditions are both true
  18. 33. type of or that tests if either or both test cases are true
  19. 34. a name given to store an object or shape, which can be used to change properties of that object or shape
Down
  1. 1. type of gradient that fades from the center of a shape outwards to its borders
  2. 2. type of gradient that fades straight across a shape
  3. 3. the parameter for onKeyHold
  4. 4. words that are specific to python and cannot be used inside function or variable names
  5. 6. the inputs of a function following the function name in a function definition, can be one or more
  6. 7. the function that checks if any key is pressed and not released for some time
  7. 10. conditionals that use the keywords or, and or not to combine simple test cases
  8. 13. a shape inside of a group
  9. 14. the property specific to stars only
  10. 15. lines of code starting with # that are ignored by Python
  11. 17. conditionals that use compound and nested conditionals to test more complicated cases
  12. 18. the property that changes the color of a shape
  13. 19. the 400x400 blank area that displays shapes and actions coded in a program
  14. 21. conditionals that indent a conditional inside the body of another conditional
  15. 24. the indented code of a function or conditional where the instructions and tasks are written
  16. 25. any variable named outside of a function that can be used anywhere in a program
  17. 30. the statement that tells Python to do nothing
  18. 32. property that shows or hides shapes or groups of shapes