Animations and Art
Go
CTF
UI/UX
Music and Games
100

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()

100

Which characters declare and define a variable in Go in one line?

:=

100

What does CTF stand for?

Capture The Flag

100

What is the CSS selector to get all elements with the class className

.className,

100

What is the application that is used to make music?

BandLab

200

What does the following code do?

ellipse(mouseX, mouseY, 50, 50);

draw a circle that follows the mouse cursor

200

The zero value of a pointer in Go (before assignment).

nil

200

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

200

Name of hosting service we used to host our website

GitHub Pages

200

What coding language is used to format Web Applications and make the design more aesthetically pleasing?

CSS

300

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)

300

The entry point function where a Go program starts.

main()

300

What are cookies(not the food)?

Small internet text files that store information

300

What does HTML stand for?

Hyper Text Markup Language

300

What coding language was used to make the game run and play audio?

Javascript

400

This object type helps organize position, velocity, and acceleration in animated sketches, and is commonly used for motion in 2D or 3D space.

PVector()

400

The keyword used to define a constant in Go

const

400

What does the terminal command “ls” do?

Lists files and any directories

400

What scripting language is used in html?

JavaScript

400

In CSS, how do we select a class to style?

Demo

500

This is used for saving transformations and rotations of shapes

matrices

500

This special variable in a Go for loop lets you skip the current iteration and jump to the next one.

continue

500

What can Git help you do in digital forensics?

Finding deleted/modified data in files as well as the commit history.

500

How do you make a button?

<button type="button">Click Me!</button>

500

Opacity is fully opaque

True