i = 0
while i < 10:
print(i)
What's an infinite loop?
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?
Part cephalopod and part feline, this GitHub mascot is often seen in "octoposing" outfits depending on the repository's theme.
Who is Octocat?
x = 5
y = x
y += 2
print(x, y)
What is 5 7
This green plant-like substance found outdoors is rumored to exist beyond the walls of the computer labs.
What is Grass?
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?
This search engine company started in a Stanford dorm room and now powers the internet.
What is Google?
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?
fn main() {
let x = 3;
let y = 2;
println!("{}", x + y * 2);
}
What is 7?
What movie taught us that onions have layer?
What is Shrek?
int x = 5;
if (x = 10) {
printf("x is 10\n");
}
This programming language is famous for coining the phrase “Hello, World!” and also for making beginners forget their semicolons.
What is C?
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?
num = input: 35:
int(input("Enter a number: "))
if num % 2 == 0:
print("Even number")
else:
print("Odd number")
What is "Odd number"?
This biological requirement happens every night but is often replaced by energy drinks and debugging.
What is Sleeping?
String a = "hello";
String b = "hello";
if (a == b) {
System.out.println("Equal");
}
Needs to use a.equals(b)
This programming language was named after a British comedy group, not a reptile, which confused millions of beginners.
What is Python?
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?
int main() {
int x = 2;
int y = 3;
int z = x + y * 2;
printf("%d", z);
return 0;
What is 8?
Who is ISU’s new starting QB?
Who is Jaylen Raynor?
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
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?
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?
#include <stdio.h>
int main() {
int x = 5;
int *p = &x;
*p = 10;
printf("%d\n", x);
return 0;
}
What is 10?
This daily habit involving soap and water helps remove sweat, dirt, and bacteria from your body.
What is taking a shower?