Swat the Bug
Grandpa's Internet
Name that Mascot
What's the Output?
Touching Grass
100

i = 0

while i < 10:

print(i)

What's an infinite loop?

100

This programming language, known for its slogan “write once, run anywhere,” was created in 1995 and is widely used in enterprise software.

What is Java?

100

Part cephalopod and part feline, this GitHub mascot is often seen in "octoposing" outfits depending on the repository's theme.

Who is Octocat?

100

x = 5

y = x

y += 2

print(x, y)



What is 5 7

100

This green plant-like substance found outdoors is rumored to exist beyond the walls of the computer labs.

What is Grass?

200

int[] nums = {1,2,3,4,5};

for(int i = 0; i <= nums.length; i++){

System.out.println(nums[i]);

}

What is an OutofBounds Error?

200

This search engine company started in a Stanford dorm room and now powers the internet.

What is Google?

200

This buck-toothed rodent represents the Go language and was designed by Renee French, featuring large eyes and a blue-grey coat.

Who is Go Gopher?

200

fn main() {

let x = 3;

let y = 2;

println!("{}", x + y * 2);

}

What is 7?

200

What movie taught us that onions have layer?

What is Shrek?

300

int x = 5;

if (x = 10) {

printf("x is 10\n");

}

Should be == instead of =
300

This programming language is famous for coining the phrase “Hello, World!” and also for making beginners forget their semicolons.

What is C?



300

his flightless bird has been the face of Linux since 1996, chosen because creator Linus Torvalds was once nipped by one at a zoo.

Who is Tux the Penguin?

300

num = input: 35:

int(input("Enter a number: "))

if num % 2 == 0:

print("Even number")

else:

print("Odd number")


What is "Odd number"?

300

This biological requirement happens every night but is often replaced by energy drinks and debugging.

What is Sleeping?

400

String a = "hello";

String b = "hello";


if (a == b) {

System.out.println("Equal");

}

Needs to use a.equals(b)

400

This programming language was named after a British comedy group, not a reptile, which confused millions of beginners.

What is Python?

400

This crustacean is the unofficial mascot of Rust; his name is a is similar to an amusement park ride found near many coast lines.

Who is Ferris the crab?

400

int main() {

int x = 2;

int y = 3;

int z = x + y * 2;

printf("%d", z);

return 0;



What is 8?

400

Who is ISU’s new starting QB?

Who is Jaylen Raynor?

500

public class BuggyExample {

    public static void main(String[] args) {

        int[] numbers = {1, 2, 3, 4, 5};


        for (int i = 0; i <= numbers.length; i++) {

            System.out.println(numbers[i]);

        }

    }

}

What is an ArrayIndexOutofBoundsException

500

In 1991, this Finnish student posted a message to a newsgroup announcing he was working on a free operating system "just for a hobby."

Who is Linus Torvalds?

500

Created at Sun Microsystems to represent a "software agent," this triangular character with a red nose is the longtime face of Java.

Who is Duke?

500

#include <stdio.h>

int main() {

int x = 5;

int *p = &x;

*p = 10;

printf("%d\n", x);

return 0;

}

What is 10?

500

This daily habit involving soap and water helps remove sweat, dirt, and bacteria from your body.

What is taking a shower?

M
e
n
u