Hardware
Programming
Logic
Internet
Acronyms
100

What piece of hardware provides input for command line interfaces?

The keyboard. 

(Or a mouse, technically, but that's not the answer I want)

100

What does this line of code, written in Java, do?

System.out.println(“hello world”);

It prints “hello world” to the command line.

100

What does an AND gate (operation) do?

It returns a signal (true) if and only if both inputs are powered (true). 

100

When did the internet become available for public use?

1991

100

What does “WWW” in a url stand for?

World Wide Web

200

What common cable type transmits both graphics and sound?

HDMI (or DisplayPort (again) technically)

200

What style language is regularly used alongside HTML?

Cascading Style Sheets (CSS)

200

What is the truth table for a NOT gate (operation)?

Input 1 | Output

T      |     F

F      |     T

200

What is the most visited website in the world?

Google

200

What does “CPU” stand for?

Central Processing Unit

300

What piece of hardware stores short-term memory?

RAM

300

What is the output of this block of code?

int x = 10;

if (x > 10) { return true; }

else { return false; }

The output is false.

300

What value does this expression return?

(T AND NOT(F))

It returns T (true). 

300

What does a 404 error mean?

It means that the server could not find the requested webpage.

300

What does “HTML” stand for?

Hyper Markup Text Language

400

Which piece of hardware has more storage? RAM or SSD

SSD (Solid State Drive)

400

Which language is the most common today for data analytics?

Python

400

What does an XOR gate (operation) do?

It returns a signal if and only if the two inputs are different (one try and one false). 

400

What is the difference between domains and hosting with regard to websites?

A domain is the address of website.

Hosting is the service that makes a website available online.

400

What does “RAM” stand for?

Random Access Memory

500

Which piece of hardware is the graphics card directly connected to in a PC?

The motherboard.

500

When needing to generate results with information from two tables with SQL, what must first be done with the two tables?

They must be joined. (ex. SELECT * FROM table_1 JOIN table_2)

500

What value does this expression return? (T is true and F is false)

(T AND F) OR (F XOR T)

It returns T (true).

500

How much does the internet weigh?

Less than 2oz (57g). Think one strawberry. That is the weight of all of the electrons in motion that make up the internet.

500

What does “SQL” stand for?

Structured Query Language

M
e
n
u