CS stands for this.
What is Computer Science?
The coding language of p5js
What is Javascript?
This function in p5.js sets the dimensions of the canvas where shapes and images are drawn.
What is createCanvas()?
The keyword that always starts a full conditional
What is "if"?
The high school Ms. Carol went to.
What is Midwood High School?
This data type is always surrounded in quotation marks.
What is "a string"?
The command to change the color of shapes
What is fill()?
This function is used at the beginning of a p5.js sketch and is called only once to set initial values for variables and objects.
What is setup()?
This operator in p5.js is used to check if two values are equal in a conditional statement, and it is also commonly used in other programming languages.
What is " == "?
Ms. Carol's usual form of transportation
What is biking?
The process of eliminating bugs and unintended behaviors in code.
What is troubleshooting?
The space we use to look for errors and print the results of our code to see what's going on.
What is console?
This function is called continuously in p5.js to update the display, allowing for animations and dynamic interactions.
What is draw()?
This logical operator in p5.js is used to combine multiple conditions in a conditional statement so that the code only runs if all conditions are true.
What is " && "?
The total number of programming & coding languages Ms. Carol knows
What is 8? (Python, C++, C#, Scratch, JavaScript, HTML, CSS, bash)
The keyboard shortcut that allows you to start a new page in a Google document.
What is "Ctrl + Enter"?
The punctuation typically put at the end of a line of code. It is good practice, although it is not required in p5js.
What is a semicolon?
This p5.js function is used to set the color of shapes' outlines and requires RGB or hexadecimal values.
What is stroke()?
In p5.js, this operator can be used in conditionals to check if at least one of multiple conditions is true, rather than requiring all of them to be true.
What is " || (the OR operator)"?
Ms. Carol's favorite sport
What is volleyball?
The cloud may not be in the sky, but rather, in one of these.
What is a server?
This operator allows you to assign a value to a variable.
What is "the assignment operator, = " ?
The function you use to switch between RGB and HSB.
What is colorMode()?
This enclosure symbol, when used in a conditional, always surrounds the logical expression that is being checked.
What is "parentheses"?
Ms. Carol's Major in College (Undergrad and Master's)
What is Computer Science and Middle School Math Education?