public class Song {
public static void main(String[] args) {
System.out.print1n("hello");
}
}
What is code that won't compile?
"Lets go ahead and get started"
Who is Stuart?
A TA that will write you a song if you go to their facebook wall
Who is Ayaz?
Game Show Host
What is an analogy for Critters?
"Is my style okay?"
What is something you'd hear, working on literally any assignment.
public class Feature1 {
public static void main(String[] args) {
System s = null;
s.out.println("hello");
}
}
"I'm going to ask the question now... Did that make sense?"
Who is Hunter?
A TA that split their head open
Who is Ana?
Balloons floating away
What is an analogy for LinkedLists?
"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?
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?
"Your CSE 143 Assignment 6 (Anagrams) score is now online"
Who is GradeIt?
A TA that makes sick mixtapes on an undisclosed SoundCloud
Who is RanDair?
Pizza Delivery
What is an analogy for catching returns?
"What's a haiku?"
What is something you'd hear, working on GuessingGame?
\u0070ublic class Feature6 {
public static void main(String[] args) {
System.out.println("hello world?");
}
}
What is code that compiles?
"Hey yall, remember to not leave colored paper in the copiers"
Who is literally any coordinator?
A TA that can do something (it's hard to explain) with their hand
Who is Jeremy?
Robots
What is an analogy for Recursion?
"Why do my notes sound short and choppy?
What is something you'd hear, working on GuitarHero?
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?
"Autumn Quarter Undergraduate TA Application for CSE Courses Now Open!"
Who is Pim Lustig?
A TA that has triple citizenship
Who is Lisi?
Mom's phone number
What is an analogy for Reference Semantics?
"My output is suuuper long, is that fine?"
What is something you'd hear, working on GrammarSolver?