Binary
Computer Parts
Python
The Internet
General
100

Binary is a base ___ number system used by computers. 

two 

100

What part of the computer is responsible for providing power to the rest of the computer? (Yes, it is this simple don't overthink it) 

BATTERY 

100

What would print when running this Python script? 

print(int(10/4))

 

2

100

HTTPS stands for? 

Hypertext Transfer Protocol Secure

100

True or False: HTML is a Turing complete programming language.

(i.e. HTML is an official programming language) 

FALSE

200

ON ; TRUE ; OFF ; TRUE ; POSITIVE ; FALSE ; ON; NEGATIVE 

is equal to what in binary? You have 10 seconds!!

(TRUE ; FALSE is equal to 10) 

11011010

200

What part of the computer is used for its main processing? 

CPU (Central Processing Unit) 

200
How many times would 'Hello World' print if this code segment was ran? 

for i in range(3):

    for j in range(4):

         print("Hello World") 

12

200
True or False: The internet is physical. 

TRUE

200

It is best practice to: 

A). Comment your code 

B). Make small scripts 

C). Use spaces to indent 

A

300

11111111 is equal to what numeric value? 

(01010101 is equal to 85)

255

300

What part of the computer is used specifically to process graphics rendering & updating? 

GPU (Graphics Processing Unit)

300

What would this Boolean expression evaluate to?

((100>1) or not (True) and not(not(not(not(1-1/2<1)))))

True 

300

What is the name for data about data? 

Meta-data

300

Which type of compression will get rid of unnecessary pieces of the file, like sound frequency humans can't hear 

Loseless or Lossy?  

Lossy 

400

10100101 is equal to what numeric value? 

(01010101 is equal to 85)

165

400

What part of the computer connects the other components of the computer through buses. 

MOTHERBOARD

400

What will the following Python script print?

a = str(3 * 3)

print(a * 3)

999

400

The internet is the world wide network of ________.

(Think: If we have LANs and WANs, what does the internet connect?) 

networks 

400

True or False: Algorithms are objective and cannot reflect human biases. 

False

500

11011011 is equal to what numeric value?

(01010101 is equal to 85)

219

500

What part of the computer provides energy in order for the computer to keep an updated time/date and to save certain biometric settings. 

CMOS; CMOS BATTERY 

500

What will this script print?

a = "Python"

a = list(a)

a = a[0+3]

print(a*(len(a) + 1))

hh

500

Who created the internet? 

Vint Cerf (BONUS POINTS: Vint Cerf & Bob Khan)

500

What is a cybersecurity attack where the malicious agent pretends to be someone else in order to extract personally identifiable information or to get you to download malicious software? 

Phishing Attack