Python Quiz 1


Watch this video before you take the Quiz


10 Questions | 1 Point for every correct answer | Let’s Get Started

1.

Python is a High Level Programming Language

 
 

2.

Python is Interpreted Language

 
 

3.

Who is the creator of Python

 
 

4.

Why is Python an Interpreted language

 
 

5.

Python can run on Windows, Mac, Unix, Linux

 
 

6.

Does Python follows Dynamic or Static Typing

 
 

7.

What will be the output of the following code

x = "hello"
y = "world"
c = x+y
print c

 
 
 

8.

What will be the output of the following code

x = “Hello World”
x = x+10
print (x)

 
 

9.

In Dynamic Typing data types are resolved during runtime and not compile time

 
 

10.

Python is called Interpreted because source files (.py) can be run directly without explicitly creating executable files

 
 

97