Question: What does calling namedtuple on a collection type return?
- a generic object class with iterable parameter fields
- a generic object class with non-iterable named fields
- a tuple subclass with non-iterable parameter fields
- a tuple subclass with iterable named fields
Answer: The correct answer of the above question is Option D:a tuple subclass with iterable named fields