Quiz on Python Programming fundamentals Leave a Comment / Artificial Intelligence for kids / By Skills Schoolz 0% You have 5 questions with 120 seconds left. Time is up! Quizzes on Python 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. NameEmailPhone Number 1 / 7 Category: Python loops and conditionals for i in range(3): print(i) Check 2 / 7 Category: Python loops and conditionals x = 5 if x > 3: print("Big") else: print("Small") Check 3 / 7 Category: Python loops and conditionals age = 10 if age < 5: print("Toddler") elif age < 13: print("Child") else: print("Teen") Check 4 / 7 Category: Python loops and conditionals color = "red" if color == "blue": print("Sky") else: print("Apple") Check 5 / 7 Category: Python loops and conditionals x = 1 while x < 5: print(x) if x == 3: break x += 1 1234 1 2 3 4 1 2 3 123 6 / 7 Category: Python loops and conditionals for letter in "cat": print(letter) Check The "cat " is not same as " c a t " as we use for loop space will be included in between the letters 7 / 7 Category: Python loops and conditionals count = 1 while count <= 3: print("Hi") count += 1 1 2 3 4 Your score isThe average score is 74% 0% Restart quiz Send feedback
Easy & Simple Quiz on AI & Smart machines for kids Leave a Comment / Artificial Intelligence for kids / By Skills Schoolz