0 votes
in Python by
Consider b is frozen set, what happens to b.add(3)?

3 will not be available for other general operations

Error as frozen sets cannot be modified

3 will be added as a constant
...