Python Expert

Welcome to Python Beginners Quiz. This quiz will check your basic knowledge in Python Programming Language. Each correct answer will give you 5 points each. Only a very small percentage of people could score 100 out of 100 in this quiz. So Let's begin !!!

1. 

Django Framework can be used to develop Gaming Applications?

2. 

Python can't be used to create a website?

3. 

What's the output of this program?

print("Enter two numbers and I will add these numbers for you.")
first_number = input()
second_number  = input()
print(" Sum is: "+ first_number + second_number)

User Inputs: 
2
3

4. 

All of the below statements will print "Hello World"?

print('Hello World','',"")
print('',"Hello World")
print('Hello'+' '+'World')

5. 

All datatypes in python are not class?

6. 

Which Language Python is written in?

7. 

We need PyCharm or Anaconda in order to run a Python program?

8. 

import random
fruit = random.randint(0,2)
fruits = ["Apple","Blueberry","Cherry"]
print("If you are hungry, You can eat {}".format(fruits[fruit]))

9. 

if ("condition"):
print("Python is Great")
else:
print("Python is not Great")

10. 

Is Python List and Tuples are same and can be used interchangeably?

11. 

a = ""
for i in range(1,10,2):
a +=str(i)
print(a)

12. 

What's the output?

print("What's your name?")
name = input()
print("Hi, " + name[::-1])

User Inputs:
itpanther.com

13. 

What's the output of this program?

print("Enter a Number:")
first_number = int(input())
print(first_number)

User Inputs:
A

14. 

What's the output?

fruits = ["Apple", "Blueberry", "Cherry"]
print(fruits[::-1])

15. 

You can use reverse() function in python to reverse a string?

16. 

Is python an Interpreted Language?

17. 

Who is the creator of Python Programming Language?

18. 

if (-1):
print("Python is Great")
else:
print("Python is not Great")

19. 

Does Python have Switch statement?

20. 

fruits = ["Apple","Blueberry","Cherry"]

if "blueberry" in fruits:
print("Yes, Stock is availble")
else:
print("Stock is not available")


Your Name?
Your Email?