Video Games
Stevenson CS
Technology
Languages
Miscellaneous
100

What is thought to be the first video game, created in 1958 and becoming popular in the 1970s?

Pong

100

What are the two AP CS classes

AP CSP and AP CSA
100

What programming language is named after a type of Indonesian coffee?

Java

100

#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++

100

Who plays Katniss Everdeen in the Hunger Games series?

Jennifer Lawrence

200

What is the best-selling video game ever as of 2023?

Minecraft

200

What computer science class just got added to the CS courses this year?

Algorithms and Data Structures

200

What does CPU stand for?

Central Processing Unit

200

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

200

If I can go band for band, what can you go for?

Mil for mil

300

What workshop will be hosted in CS Club about video games?

Scratch/Unity

300

Who are the wonderful sponsors for CS Club?(Everyone should get this)

Mr. Pinta and Mr. Gumminger!

300

What is a data scientist's favorite type of furniture

Tables!

300

// 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


300

In Naruto, the three Jutsu types are ninjutsu, taijutsu, and ______

Genjutsu 

400

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

400

What terminal do the school Mac Desktops use?

The Zsh terminal (Accept Bash)

400

What does the 500 error refer to?

Server Error

400

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

400

What’s the name of the last song in brat by Charlie xcx?

365

500

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.

500

What language does Mobile App Development teach?

Swift

500

What does GNU stand for?

GNU's Not Unix

500

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

500

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