Computer Programming

1234567891011121314151617181920212223242526272829303132333435363738394041
Across
  1. 3. breaking your programs into smaller parts.
  2. 7. in-line (single line) comment
  3. 8. Command that lets you tell Tracy to move backward. In between the parentheses you need to put a number to tell Tracy how far to move backward.
  4. 11. Has Tracy start drawing a trail.
  5. 12. Let’s us repeat code as long as something is true.
  6. 15. Indentation is the visual structure of how your code is laid out. It uses tabs to organize code into a hierarchy.
  7. 17. In Python functions, the function body is the indented block of code that comes after the def my_function(): line. The function body is what will be executed when the function is called.
  8. 18. Stops Tracy from leaving a trail.
  9. 20. A symbol or container that holds a value.
  10. 23. Starts and Stops filling in drawn shapes.
  11. 30. Removes any pen markings Tracy has left on the canvas without turning or moving her.
  12. 34. Creates a loop where the value of i is controlling the loop iterations.
  13. 36. down design: A method for breaking our program down into smaller parts.
  14. 37. Changes Tracy’s trail thickness
  15. 39. Calls a function
  16. 40. Allows you to change the colour of the line Tracy draws.
  17. 41. Saves user input
Down
  1. 1. command that tells Tracy to repeat a certain number of times.
  2. 2. turns Tracy right at a specified angle.
  3. 4. can control the radius, degree, and number of points of a circle
  4. 5. Moves Tracy to a specified coordinate.
  5. 6. Alters the value of i by including a start value, end value, and a value to increase by on each iteration.
  6. 9. Changes the type of a value to an integer.
  7. 10. A message in your code that explains what is going on.
  8. 13. turns Tracy left at a specified angle.
  9. 14. Multi-line comment
  10. 16. determines how quickly Tracy will move through commands.
  11. 19. Assigns a variable
  12. 21. Pieces of information you can give to functions when you define them. When the function is called the arguments are the data you pass into the function’s parameters. Parameter is the variable in the declaration of the function. Argument is the actual value of this variabel that gets passed to the function.
  13. 22. Command that tells Tracy to draw a circle with a specified radius.
  14. 24. Command that tells Tracy to turn right and in between parentheses, how many degrees to turn right.
  15. 25. A loop is a way to repeat code in your program.
  16. 26. Defines/Declares a function
  17. 27. Command that lets you tell Tracy to move forward. In between the parentheses you need to put a number to tell Tracy how far to move forward.
  18. 28. A function is like a commend that you get to invent and name. It allows us to break our program into smaller parts, making it easier to understand.
  19. 29. A symbol or container that holds a value.
  20. 31. A control flow tool used as a second condition check of an if statement. It is a contraction of else if.
  21. 32. command that tells Tracy to turn left and in between parentheses, how many degrees to turn left.
  22. 33. lets you ask a question to the program and only runs code if the answer is true.
  23. 35. brief explanation of code in plain English
  24. 38. Drown(Decompose): Breaking down your code is splitting it into more functions