-There are 10 kinds of people in this world. Those who understand binary and those who don't.
Links
CodeHS:
https://codehs.com/tutorial/david/sample-a-csp-performance-task
https://codehs.com/tutorial/david/sample-a-csp-performance-task-1
csAwesome RunTime Errors:
https://runestone.academy/ns/books/published/fopp/Debugging/RuntimeErrors.html
Code.Org
Survival Guide To The Create Task
Create Task: Deep Dive PowerPoint
Create Task: Make A Plan PowerPoint
Extremely Helpful Spreadsheet
EXCELLENT study website
Exam Student Handout
Identify parts of a function
Decoding Exam Language
sequence: this is the part of the algorithm that moves through a set of data, a for-loop or while-loop is an example of this.
selection: this is the part of the algorithm that actually selects the next step based on the true or false conditional (if-else) is an example of this.
Iteration: this simply mean to "repeat". So any part of the algorithm that causes it to "loop" -if statement, for loop, while loop are all examples.