Will It Compile?
Who Said That?
You did WHAT?
Analogies
Overheard @ IPL
100

public class Song {

    public static void main(String[] args) {

    System.out.print1n("hello");

    }

}

What is code that won't compile?

100

"Lets go ahead and get started"

Who is Stuart?

100

A TA that will write you a song if you go to their facebook wall

Who is Ayaz?

100

Game Show Host

What is an analogy for Critters?

100

"Is my style okay?"

What is something you'd hear, working on literally any assignment.

200

public class Feature1 {

    public static void main(String[] args) {

        System s = null;

        s.out.println("hello");

    }

}

What is code that will compile?
200

"I'm going to ask the question now... Did that make sense?"

Who is Hunter?

200

A TA that split their head open

Who is Ana?

200

Balloons floating away

What is an analogy for LinkedLists?

200

"I have N pixels different between mine and the expected output. Will I get marked off?"

What is something you'd hear, working on CafeWall?

300

import java.util.*;

public class Feature2 {

    public static void main(String[] args) {

        List<String> words = new ArrayList<String>() {{

                add("quick");

                add("brown");

                add("fox");

            }};

        System.out.println(words);

    }

}

What is code that will compile?

300

"Your CSE 143 Assignment 6 (Anagrams) score is now online"

Who is GradeIt?

300

A TA that makes sick mixtapes on an undisclosed SoundCloud

Who is RanDair?

300

Pizza Delivery

What is an analogy for catching returns?

300

"What's a haiku?"

What is something you'd hear, working on GuessingGame?

400

\u0070ublic class Feature6 {

    public static void main(String[] args) {

        System.out.println("hello world?");

    }

}

What is code that compiles?

400

"Hey yall, remember to not leave colored paper in the copiers"

Who is literally any coordinator?

400

A TA that can do something (it's hard to explain) with their hand

Who is Jeremy?

400

Robots

What is an analogy for Recursion?

400

"Why do my notes sound short and choppy?

What is something you'd hear, working on GuitarHero?

500

import java.lang.reflect.Method;

public class Feature4 {

    public static void main(String[] args) throws Exception {

        Feature4 j = new Feature4();

        Method m = j.getClass().getMethod("foo", Integer.class);

        m.invoke(j, 4);

    }

    public void foo(int n) {

        System.out.println("int: " + n);

    }

    public void foo(double d) {

        System.out.println("double: " + d);

    }

}

What is code that won't compile?

500

"Autumn Quarter Undergraduate TA Application for CSE Courses Now Open!"

Who is Pim Lustig?

500

A TA that has triple citizenship

Who is Lisi?

500

Mom's phone number

What is an analogy for Reference Semantics?

500

"My output is suuuper long, is that fine?"

What is something you'd hear, working on GrammarSolver?