What is thought to be the first video game, created in 1958 and becoming popular in the 1970s?
Pong
What are the two AP CS classes
What programming language is named after a type of Indonesian coffee?
Java
#include <stdio.h>
int main(void){}
void foo(const char* baz) {
char *bar = (char *)malloc(50 * sizeof(char));
if (bar == NULL)
printf("Fail\n")
return;
for (int i = 0; i < (50 * sizeof(char)); i++)
bar[i] = baz[i];
}
C/C++
Who plays Katniss Everdeen in the Hunger Games series?
Jennifer Lawrence
What is the best-selling video game ever as of 2023?
Minecraft
What computer science class just got added to the CS courses this year?
Algorithms and Data Structures
What does CPU stand for?
Central Processing Unit
find /foo/bar -type f -exec grep -l "baz" {} + | while read -r qux; do
echo "Processing $qux";
awk '/quux/ {print $0}' "$qux" |
tee >(wc -l > "${qux}.count") |
sort |
uniq > "${qux}.processed";
done
Bash
If I can go band for band, what can you go for?
Mil for mil
What workshop will be hosted in CS Club about video games?
Scratch/Unity
Who are the wonderful sponsors for CS Club?(Everyone should get this)
Mr. Pinta and Mr. Gumminger!
What is a data scientist's favorite type of furniture
Tables!
// Function to calculate the sum of an array
function calculateSum(arr) {
let sum = 0;
for (let i = 0; i < arr.length; i++) {
sum += arr[i];
}
return sum;
}
// Example usage
const numbers = [1, 2, 3, 4, 5];
const totalSum = calculateSum(numbers);
console.log("The sum of the array is: " + totalSum);
Javascript
In Naruto, the three Jutsu types are ninjutsu, taijutsu, and ______
Genjutsu
The word Tetris is a combination of the Greek word Tetra (meaning four) and what 6-letter sport that was a favorite of game creator Alexy Pajitnov?
Tennis
What terminal do the school Mac Desktops use?
The Zsh terminal (Accept Bash)
What does the 500 error refer to?
Server Error
def sum_eq_n?(arr, n)
return true if arr.empty? && n == 0
arr.product(arr).reject { |a,b| a == b }.any? { |a,b| a + b == n }
end
What language is this?
Ruby
What’s the name of the last song in brat by Charlie xcx?
365
The protagonist for this video game franchise solves elaborate puzzles using the franchise’s namesake “gun” for the research firm, Aperture Science. Name this character and video game franchise.
Chel, in the Portal Franchise.
What language does Mobile App Development teach?
Swift
What does GNU stand for?
GNU's Not Unix
What's the language? What's the output for x(5)?
public static int x(int n) {
if (n == 0) {
return 0;
} else {
int p = x(n - 1);
int tot = n * p;
return tot;
}
}
Java , 120
In this 1995 anime, pilots of semi-organic mechas fight to prevent “the third impact”. Angels fights against the forces of an organization called Nerv, headquartered in Tokyo III. What is the name of this anime.
Neon Genesis Evangelion