"""
Topic 04: Functions & Lambda Expressions - EASY Exercises (10)
"""
# Exercise 1: Define a function 'say_hello' that prints "Hello, World!". Call the function.
# Write your code below:
# Exercise 2: Create a function 'greet_user' that takes a name as an argument and prints "Hello [name]".
# Write your code below:
# Exercise 3: Write a function 'add' that takes two numbers and returns their sum.
# Write your code below:
# Exercise 4: Create a function 'is_even' that returns True if a number is even and False otherwise.
# Write your code below:
# Exercise 5: Define a function 'area_square' that takes the side length and returns the area.
# Write your code below:
# Exercise 6: Write a function 'max_of_two' that returns the larger of two numbers.
# Write your code below:
# Exercise 7: Create a function with a default argument 'country="India"' that prints "I am from [country]".
# Write your code below:
# Exercise 8: Write a function 'multiply' that returns the product of two numbers.
# Write your code below:
# Exercise 9: Create a lambda function that adds 10 to any number passed in.
# Write your code below:
# Exercise 10: Use a lambda function to find the cube of a number.
# Write your code below: