Star Wars - Anakin Skywalker grew up to be who?
What is Darth Vader
What does RAM stand for?
Random Access Memory, Main Memory
“Blank Space” was a single off of which Taylor Swift album?
1989
What condiment was used as medicine in the olden times?
Ketchup
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
What is the name of the substance that can hurt Superman?
Kryptonite
A sequence of precise instructions that leads to a solution.
Algorithm
Which artist made history in 2020 as the youngest winner of the Grammys’ four main categories?
Billie Eilish
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
What is this code meant to do#include <iostream>
using namespace std;
int main ()
Beginning of a program
Who starred as Tony Stark in the Marvel Cinematic Universe?
Robert Downey Jr
Line that tells the computer to do something.
Instructions
Also called Executable Statements
Statement
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.
Which country consumes the most chocolate per capita?
Switzerland
The end of a program followed by }
Return 0;
Captain America: Civil War: Who ISN'T on Iron Man's team? Vision, Black Panther, Hawkeye, or Black Widow?
Hawkeye
tells the compiler where to find information about certain items that are used in your program
# include
Which actor played James Bond the most times?
Roger Moore
What is the tallest breed of dog in the world?
Great Dane
numbers with a decimal point such as double
decimal floats to new position
floating-point types
In Harry Potter what potion gives good luck to those who drink it?
Felix Felicis
From which company Steve Jobs took the idea for the graphical user interface with a mouse?
Xerox
What Hollywood actress stars in the breakout hit Netflix series, “Wednesday Addams?”
Wednesday
What is the more popular name for the portrait officially titled “La Gioconda,” painted in 1503?
The Mona Lisa
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