This function in Processing is used to set the background color of each frame, and is often placed at the top of the draw() function to clear the screen.
background()
Which characters declare and define a variable in Go in one line?
:=
What does CTF stand for?
Capture The Flag
What is the CSS selector to get all elements with the class className
.className,
What is the application that is used to make music?
BandLab
What does the following code do?
ellipse(mouseX, mouseY, 50, 50);
draw a circle that follows the mouse cursor
The zero value of a pointer in Go (before assignment).
nil
What does the terminal command “grep” do?
It helps find certain letters, words, or phrases in files. You can use -r to check all the files
Name of hosting service we used to host our website
GitHub Pages
What coding language is used to format Web Applications and make the design more aesthetically pleasing?
CSS
What does this code draw?
translate(200, 200);
rotate(radians(45));
rect(0, 0, 100, 50);
a rectangle rotated 45 degrees, drawn at position (200, 200)
The entry point function where a Go program starts.
main()
What are cookies(not the food)?
Small internet text files that store information
What does HTML stand for?
Hyper Text Markup Language
What coding language was used to make the game run and play audio?
Javascript
This object type helps organize position, velocity, and acceleration in animated sketches, and is commonly used for motion in 2D or 3D space.
PVector()
The keyword used to define a constant in Go
const
What does the terminal command “ls” do?
Lists files and any directories
What scripting language is used in html?
JavaScript
In CSS, how do we select a class to style?
Demo
This is used for saving transformations and rotations of shapes
matrices
This special variable in a Go for loop lets you skip the current iteration and jump to the next one.
continue
What can Git help you do in digital forensics?
Finding deleted/modified data in files as well as the commit history.
How do you make a button?
<button type="button">Click Me!</button>
Opacity is fully opaque
True