Python MCQ Set 1 1. Which of these about a frozenset is not true? a) Mutable data type b) Allows duplicate values c) Data type with unordered values d) Immutable data type AnswerAnswer: a [Reason:] A frozenset is an immutable data type. 2. What is the syntax of the following piece of code? >>> a=frozenset(set([5,6,7]))…