Industry-relevant training in Business, Technology, and Design to help professionals and graduates upskill for real-world careers.
Fun, engaging games to boost memory, math fluency, typing speed, and English skillsβperfect for learners of all ages.
Enroll to start learning
Youβve not yet enrolled in this course. Please enroll for free to listen to audio lessons, classroom podcasts and take practice test.
Test your understanding with targeted questions related to the topic.
Question 1
Easy
Declare a variable called fruit
and assign it the value 'Mango'. What data type is fruit
?
π‘ Hint: What kind of value does 'Mango' represent?
Question 2
Easy
Create an integer variable called quantity
. Assign it a value of 10. What will type(quantity)
return?
π‘ Hint: Integer is represented by whole numbers.
Practice 4 more questions and get performance evaluation
Engage in quick quizzes to reinforce what you've learned and check your comprehension.
Question 1
What data type is age = 30
?
π‘ Hint: Think of whole numbers.
Question 2
The result of type(False)
is?
π‘ Hint: What type represents True or False?
Solve 2 more questions and get performance evaluation
Push your limits with challenges.
Question 1
Create a Python program that accepts user input for a temperature in Celsius, converts it to Fahrenheit using the formula F = C * 9/5 + 32, and prints the converted value with its type.
π‘ Hint: Remember how to convert strings to numbers!
Question 2
Write a function that receives a string containing a number, converts it into a float, checks if the number is greater than 10, and returns 'High' or 'Low'.
π‘ Hint: Think about how to use `if` statements with the converted number.
Challenge and get performance evaluation