HTML
CSS
Javascript
Field Trips and Speakers
Other
100
Name an example of a valid HTML tag.
a, p, h1, div, span...
100
How do you change the background color of all divs on a page?

div {
    background-color: red;
}

100
How do you print to the console?
console.log('Hello, World!');
or
println('Hello, World!');
100
Digitas: What’s an example of a sensor?
Temperature, pressure, water, light
100
Name a fun fact about one of your GWC classmates!
Anything that's true!
200
What is an h1 tag?
An HTML tag that is used to make the largest or most prominent header.
200
What CSS attribute is used to make text larger?
font-size
200

How do you call the following function?
function helloWorld() {
    println(‘Hello World!’);
}

helloWorld();
200
PegaSystems: What is a strategy for developing and designing an application?
Wire frames
Paper prototyping
200
What is an example of a version control system?
Github, Subversion, CVS
300
Correct the syntax in the following line of HTML:
<div>Hello, World!<div>
<div>Hello, World!</div>
300
How do you set the width and height of this image?
<img class="myclass" src="thisisanimage.png" />

.myclass {
    width: 50px;
    height: 50px;
}

300
The following creates what type of variable?
var hello = "hello";
string
300
What is an example of a game design platform?
Unity
300
Name one item from the club contract.
Respect each other
Have fun
400
How do you write an HTML comment?
<!-- Document everything -->
400

What is missing from the following css rule?
div {
    text-align: center
}

div {
    text-align: center;
}

400

What is printed out when the following method runs?
function counter() {
    for (var i = 0; i < 5; i++) {
        println(i);
    }
}

01234
400
Security: What is a way that we can attack a website?
Code injection
Redirection
400
What is an example of a sorting algorithm?
Bubble sort, insertion sort, quick sort, selection sort
500
Write an example of a valid HTML link
<a href="www.google.com">Click Me!</a>
500

Which text would be red in the example below?
div, #myid, .myclass {
    color: red;
}
<span class=”myclass”>This is text 1!</span>
<h1 id=”myid”>This is text 2!</h1>
<div>This is text 3!</div>

All of them!
500
Write a function that takes a variable as an argument.

function foo(bar) {
    console.log(bar);
}

500
Security: What is a dictionary attack?
Trying common words and combinations of common words to guess a user's password.
500

What will be printed in the following example?
if (true && false) {
    println(‘apples’);
}
if (true || false) {
    print(‘oranges’);
}

oranges
M
e
n
u