Game History
Guess the Language
Computer History
Guess the Video Game
Vocabulary
100

What is the most bought game in history

Minecraft

100

a = int(input("enter first number: "))

b = int(input("enter second number: "))

sum = a + b

print("sum:", sum)

Python

100

True or False: The combined power of all the computers in Apollo 11 is much less than the power of a single modern mobile phone.

True

100

This Nintendo Game was released in 1983

Super Mario Bros

100

What does CPU stand for?

Central Processing Unit

200
What is the best selling gaming console?

Play-Station 2

200

int a = 5;

int b = 8;

int sum;

sum = a+b;

System.out.println("Sum is: " + sum);

Java

200

The creators of this company built their first computer from a wooden box. What is the name of this company?

Apple

200

This is the first Platform Game in history

Donkey Kong
200

Hexadecimal is base . . . ?

Base 16
300

What is the world's first Computer Game?

Nim?

300

fn addition(num1:i32, num2:i32)->i32{

    return (num1+num2); 

}

fn main() {

    let num1:i32 = 10;

    let num2:i32 = 20;

    let mut res:i32 = 0;

    res = addition(num1,num2); 

    println!("Addition is: {}",res); 

}

Rust

300

Grace Hopper found a moth stuck in a relay that created a malfunction. What did she call the removal process?

Debugging

300

This was the first game to officially include live events

Fortnite

300

How many bytes are in a kilobyte

1024! This is because computers run on the binary system.

Fun Fact: Google is actually wrong and they say that 1000 bytes are in a kilobyte! Therefore, you smarter than google!!! 

400

What was the first gaming console?

Magnavox Odyssey

400

int addition(int a,int b);

int main()
{
    int num1;    //to store first number
    int num2;    //to store second number
    int add;    //to store addition
         //read numbers
    cout<<"Enter first number: ";
    cin>>num1;
    cout<<"Enter second number: ";
    cin>>num2;
         //call function
    add=addition(num1,num2);
         //print addition
    cout<<"Addition is: "<<add<<endl;
         return 0;
}

//function definition
int addition(int a,int b)
{
    return (a+b);
}

C++

400

Which mathematician is known for creating a test that defined how and when machines could be considered intelligent?

Alan Turing
400

This game's story line revolves around the destruction of Khaenri'ah

Genshin Impact

400

This error occurs when the number of bits in a program is not enough to represent the number inputted.

Overflow Error

500

What programming language is Super Mario Bros. written in?

6502 assembly

500

puts "Enter first value: "
num1=gets.chomp.to_i
puts "Enter second value: "
num2=gets.chomp.to_i


sum=num1+num2
puts "The sum is #{sum}"

Ruby

500

What decade was the first email sent?

1970s

500

What game was created by Robert Nicholas Christian Topala?

Geometry Dash

500

This library of procedures acts as a glossary for all methods found in a specific programming language.

Application Programming Interface  (API)