Evaluate The Expression
Famous Computer Scientists
Computer parts
Software Companies
Python keywords
1
print("Hello world!")
Hello world!
1

This Computer scientist is known as the "Father of computer science"

Allen Turing

1

This computer part is an output device which displays information in pictorial or textual form 

What is a monitor?

1

This company develops the Windows operating system

What is Microsoft?

1
This Python keyword defines a function
what is def?
2

x = 5 + 15

y = (2 * x) + 10

print(y)

50

2
This computer scientist is known for creating the Linux operating system. 

Who is Linus Torvalds?

2

This computer part is considered to be the "brain" of the computer, being that is the main processor for the computer

What is the CPU?
2

Known for its search engine, this software company has also created the GO programming language 

What is Google?

2

This Python keyword tells the computer to get out of a loop if this is hit

What is break?
3

isBool = True and False or True

print(isBool)

What is True?

3

This Computer Scientist is credited with being the first programmer

Ada Lovelace

3

This tiny semiconductor device acts as an electronic switch, and billions of them form modern processors

What is a transistor?

3

This company maintains Photoshop and Premiere Pro

What is Adobe?

3
This python keyword, typically found at the top of the file, is used to grab functions from libraries

What is import?

4

x = 25

x ^= 21
print(x)

What is 12?

4

This computer scientist is credited with naming the discipline "Software Engineering"

Margaret Hamilton

4

This volatile memory stores the data the CPU need immediately

What is RAM?

4

This software company is primarily known for selling database software, as well as maintaining the Java programming language

What is Oracle?

4

This keyword handles exceptions when something might go wrong

What is try? or What is try/except?

5

words  = ["These", "are", "some", "words"]

i = 0

for word in words

    i = i + 1

    print(word[i])

What is a crash?

5

This man is credited with creating the Python programming language.

Guido Van Rossum

5

This computer part is designed for digital image processing and to accelerate graphics 

What is the GPU?

5

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?

5

This Python keyword is used to hint that something is nothing or null. 

None