Practice - Week - 05
Practice Questions
Test your understanding with targeted questions
What is a string?
💡 Hint: Think about how texts are represented in programming.
How do you concatenate two strings in Python?
💡 Hint: What operator can you use to join text strings?
4 more questions available
Interactive Quizzes
Quick quizzes to reinforce your learning
What symbol is used for string concatenation in Python?
💡 Hint: Think of how you join words in a sentence.
True or False: Strings are immutable in Python.
💡 Hint: Can you change a letter in an existing string directly?
1 more question available
Challenge Problems
Push your limits with advanced challenges
Create a function that takes a string and replaces all vowels with asterisks (*).
💡 Hint: Use a list comprehension to iterate through the string.
Write a program to check if two strings are anagrams of each other.
💡 Hint: Sorting the characters can help clarify the relationship between the strings.
Get performance evaluation
Reference links
Supplementary resources to enhance your learning experience.