Quiz on Python Programming fundamentals

0%

You have 5 questions with 120 seconds left.

Time is up!


Quizzes on Python

App Development

Quizzes on Python for Beginners

Attend this Quiz to test your knowledge on Python fundamentals like if  else , loops & much more 
Level: Intermediate
Questions: 7
Time : 5 mins

Please enter your details for providing your certificates!

Note: Score above 30% to get your free passed certification.

1 / 7

Category: Python loops and conditionals

age = 10
if age < 5:
print("Toddler")
elif age < 13:
print("Child")
else:
print("Teen")

2 / 7

Category: Python loops and conditionals

color = "red"
if color == "blue":
print("Sky")
else:
print("Apple")

3 / 7

Category: Python loops and conditionals

x = 1
while x < 5:
print(x)
if x == 3:
break
x += 1

4 / 7

Category: Python loops and conditionals

x = 5
if x > 3:
print("Big")
else:
print("Small")

 

 

5 / 7

Category: Python loops and conditionals

count = 1
while count <= 3:
print("Hi")
count += 1

6 / 7

Category: Python loops and conditionals

for letter in "cat":
print(letter)

7 / 7

Category: Python loops and conditionals

for i in range(3):
print(i)

Your score is

The average score is 74%

0%

Scroll to Top