Binary is a base ___ number system used by computers.
two
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
What would print when running this Python script?
print(int(10/4))
2
HTTPS stands for?
Hypertext Transfer Protocol Secure
True or False: HTML is a Turing complete programming language.
(i.e. HTML is an official programming language)
FALSE
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
What part of the computer is used for its main processing?
CPU (Central Processing Unit)
for i in range(3):
for j in range(4):
print("Hello World")
12
TRUE
It is best practice to:
A). Comment your code
B). Make small scripts
C). Use spaces to indent
A
11111111 is equal to what numeric value?
(01010101 is equal to 85)
255
What part of the computer is used specifically to process graphics rendering & updating?
GPU (Graphics Processing Unit)
What would this Boolean expression evaluate to?
((100>1) or not (True) and not(not(not(not(1-1/2<1)))))
True
What is the name for data about data?
Meta-data
Which type of compression will get rid of unnecessary pieces of the file, like sound frequency humans can't hear
Loseless or Lossy?
Lossy
10100101 is equal to what numeric value?
(01010101 is equal to 85)
165
What part of the computer connects the other components of the computer through buses.
MOTHERBOARD
What will the following Python script print?
a = str(3 * 3)
print(a * 3)
999
The internet is the world wide network of ________.
(Think: If we have LANs and WANs, what does the internet connect?)
networks
True or False: Algorithms are objective and cannot reflect human biases.
False
11011011 is equal to what numeric value?
(01010101 is equal to 85)
219
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
What will this script print?
a = "Python"
a = list(a)
a = a[0+3]
print(a*(len(a) + 1))
hh
Who created the internet?
Vint Cerf (BONUS POINTS: Vint Cerf & Bob Khan)
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