Processing Exercise Set B - hdsbbrooks/ICS2O GitHub Wiki
For all of these exercises, do not hand them in, just ensure your teacher sees the work, and that you can communicate your understanding of the work related to the learning goals.
It is highly suggested that you complete these 3 exercises prior to attempting Processing - Assignment 2
Estimated time to complete: 2-3 classes
- Recreate the image below. Each set of shapes is created with
for
loops. For example, there is only onetriangle
line of code, but thefor
loop draws multiple triangles.
Estimated time to complete: 1-3 classes
- Recreate the image below. Use
while
loops to complete this task. You can technically complete this task usingfor
loops, but it is expected that you practice usingwhile
loops.
Estimated time to complete: 2-4 classes
- Work on this if you complete Exercise 6 + 7 early.
- Recreate the image below. You will need to make use of the
%
operator, andwhile
loops.
The Overarching Learning Goal for this is Programming Concepts. The specific Learning Goal(s) for this include:
- We are learning to explain programming concepts and constructs.
- We are learning to plan, write, and maintain simple programs.
Success Criteria for We are learning to explain programming concepts and constructs |
Met | Not Met | Learning and Improvement Comments |
---|---|---|---|
I can use correct terminology to describe programming concepts | |||
I can describe the types of data that computers can process and store | |||
I can explain the difference between constants and variables used in programming | |||
I can determine the expressions and instructions to use in a programming statement, taking into account the order of operations | |||
I can identify situations in which decision structures are required | |||
I can appropriately use decision structures | |||
I can identify situations in which looping structures are required | |||
I can appropriately use looping structures | |||
I can describe the function of Boolean, comparison, and arithmetic operators |
Success Criteria for We are learning to plan, write, and maintain simple programs |
Met | Not Met | Learning and Improvement Comments |
---|---|---|---|
I can use variables, expressions, and assignment statements to store and manipulate numbers and text in a program | |||
I can write a program that includes input and output | |||
I can write clear and maintainable code using proper programming standards | |||
I can write clear and maintainable internal documentation to a specific set of standards | |||
I can write a program that includes a decision structure for two or more choices | |||
I can write a program that uses looping structures effectively |