General
History
Internet
Computer Hardware
Computer Science
100

What is the richest tech company in the world?

Apple

100

Which company developed the first commercially successful smartphone?

Apple

100

What does WWW stand for?

World Wide Web

100

What does RAM stand for?

Random-access Memory

100

What is a sequence of instructions that a computer can execute?

Algorithm

200

What does FAANG stand for?

Facebook(META), Amazon, Apple, Netflix, Google

200

Which company invented the first microprocessor?

Intel

200

What is the term for a unique identifier assigned to each device connected to the internet?

IP Address

200

What does CPU stand for?

Central Processing Unit

200

What is a collection of elements that are stored in a specific order?

Array

300

What parent company owns Google, YouTube, and Waymo?

Alphabet

300

Which company developed the first commercially successful personal computer?

IBM

300

What is the term for small text files that websites store on a user's device to track their preferences and browsing history?

Cookies

300

What is the term for a small, printed circuit board that contains electronic components?

Motherboard

300

What is the programming paradigm that organizes software design based on the concepts of classes and objects and its use of modularity.

Object Oriented Programming (OOP)

400

What does the acronym “IBM” mean?

International Business Machines

400
Who is the first computer programmer?

Ada Lovelace

400

What does the acronym "DNS" stand for?

Domain Name System

400

What does USB stand for?

Universal Serial Bus

400

What is the OUTPUT of the code below? (Python)


0

1

3

6

500

What modern technology is named after a viking?

Bluetooth

500

Who invented the first mechanical computer?

Charles Babbage

500

What is the original name for the Internet?

ARPANET (Advanced Research Projects Agency Network)

500

What type of memory is used to store essential system settings like date, time, and BIOS configuration?

CMOS memory

500

Identify the 2 syntax errors in the code below. (Java)


On line 4, the if conditional statement should be "if (x == 5)" not "if (x = 5)".

On line 8, there should be a semicolon after the entire print statement. "System.out.println("FALSE");"