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
What is the output of print('Hello, World!')
?
💡 Hint: It's a basic greeting message.
Question 2
Easy
If name = 'Alice'
, what does print('Name:', name)
display?
💡 Hint: It's showing the stored name variable.
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 will print('Hello' + ' ' + 'World')
output?
💡 Hint: Think about how strings combine.
Question 2
Is the following statement true? print('Age is ' + str(age))
correctly shows the value of age.
💡 Hint: Remember data types when combining!
Solve 1 more question and get performance evaluation
Push your limits with challenges.
Question 1
You have variables: username = 'Jane'
and score = 88
. Write a print statement that uses both variables in a meaningful sentence.
💡 Hint: Use f-string to include variables within a sentence.
Question 2
What would happen if you try to print a string and an integer directly using print('I am ' + age)
?
💡 Hint: Think about the compatibility of the types.
Challenge and get performance evaluation