Beginner Python Quiz.
Author: falconk2 || TRUSTED User
Number of Questions: 7
Which of the following commands would you use to display something?
display()
print()
publish()
write()
Which of the following will print correctly?
print(Hello World)
write("Hello World")
print("Hello World")
write(Hello World)
What is x in:
x=5
String
Variable
Argument
Thats not a real command so, nothing.
Which of the following is NOT a programming language?
JavaScript
Python
C++
None of the above are not programming languages
What will the following print?
#print("YA")
Nothing
YA
Error
"YA"
What will the following code print
x=7 y=5 z=x+y print(z)
x+y
z
75
12
Why is python popular?
It is easy to use
It is similar to English
It's easy to learn
All of the above