This Computer scientist is known as the "Father of computer science"
Allen Turing
This computer part is an output device which displays information in pictorial or textual form
What is a monitor?
This company develops the Windows operating system
What is Microsoft?
x = 5 + 15
y = (2 * x) + 10
print(y)
50
Who is Linus Torvalds?
This computer part is considered to be the "brain" of the computer, being that is the main processor for the computer
Known for its search engine, this software company has also created the GO programming language
What is Google?
This Python keyword tells the computer to get out of a loop if this is hit
isBool = True and False or True
print(isBool)
What is True?
This Computer Scientist is credited with being the first programmer
Ada Lovelace
This tiny semiconductor device acts as an electronic switch, and billions of them form modern processors
What is a transistor?
This company maintains Photoshop and Premiere Pro
What is Adobe?
What is import?
x = 25
x ^= 21
print(x)
What is 12?
This computer scientist is credited with naming the discipline "Software Engineering"
Margaret Hamilton
This volatile memory stores the data the CPU need immediately
What is RAM?
This software company is primarily known for selling database software, as well as maintaining the Java programming language
What is Oracle?
This keyword handles exceptions when something might go wrong
What is try? or What is try/except?
words = ["These", "are", "some", "words"]
i = 0
for word in words
i = i + 1
print(word[i])
What is a crash?
This man is credited with creating the Python programming language.
Guido Van Rossum
This computer part is designed for digital image processing and to accelerate graphics
What is the GPU?
This software company uses and maintains data regarding US employment, which has been used to supplement the Bureau of Labor Statistics reports
Who is ADP?
This Python keyword is used to hint that something is nothing or null.
None