Question: What does the built-in `map()` function do?
- It creates a path from multiple values in an iterable to a single value.
- It applies a function to each item in an iterable and returns the value of that function.
- It converts a complex value type into simpler value types.
- It creates a mapping between two different elements of different iterables.
Answer: The correct answer of the above question is Option B:It applies a function to each item in an iterable and returns the value of that function.