Movies and Shows
Computer Science
Celebrity questions
Random Facts
Coding questions
100

Star Wars - Anakin Skywalker grew up to be who?

What is Darth Vader

100

What does RAM stand for?

Random Access Memory, Main Memory

100

“Blank Space” was a single off of which Taylor Swift album?

1989

100

What condiment was used as medicine in the olden times?

Ketchup 

100

A program that translates a high-level language program such as a C++ program, into a machine-language program that the computer can directly understand and execute. G++

Compiler

200

What is the name of the substance that can hurt Superman?

Kryptonite

200

A sequence of precise instructions that leads to a solution.

Algorithm


200

Which artist made history in 2020 as the youngest winner of the Grammys’ four main categories?

Billie Eilish

200

The mobile app development company Niantic struck gold in 2016 with what smash-hit smartphone game that captured tens of millions of players within days of its release? The game became a global phenomenon with players largely playing outdoors.

Pokemon go

200

What is this code meant to do#include <iostream>
using namespace std;
int main ()

Beginning of a program


300

Who starred as Tony Stark in the Marvel Cinematic Universe?

Robert Downey Jr

300

Line that tells the computer to do something.
Instructions
Also called Executable Statements

Statement


300

 What do the following makeup brands have in common: Fenty Beauty, Haus Labs, Rare Beauty, and R.E.M Beauty?

They were all founded by famous pop stars. Rihanna founded Fenty Beauty, Lady Gaga founded Haus Labs, Selena Gomez founded Rare Beauty, and Ariana Grande founded R.E.M Beauty.

300

Which country consumes the most chocolate per capita?

Switzerland

300

The end of a program followed by }



Return 0;

400

Captain America: Civil War: Who ISN'T on Iron Man's team? Vision, Black Panther, Hawkeye, or Black Widow?

Hawkeye



400

tells the compiler where to find information about certain items that are used in your program

# include

400

Which actor played James Bond the most times?

Roger Moore

400

What is the tallest breed of dog in the world?

Great Dane

400

numbers with a decimal point such as double
decimal floats to new position

floating-point types


500

In Harry Potter what potion gives good luck to those who drink it?

Felix Felicis






500

From which company Steve Jobs took the idea for the graphical user interface with a mouse?

Xerox


500

What Hollywood actress stars in the breakout hit Netflix series, “Wednesday Addams?”

Wednesday 

500

What is the more popular name for the portrait officially titled “La Gioconda,” painted in 1503?

The Mona Lisa

500

What will the line of code below print out and why?#include <iostream>
int main(int argc, char **argv)
{
    std::cout << 25u - 50;
    return 0

}

not -25