1. True
2. Error
3. No output
4. False
True
1. {‘a’, ‘b’, ‘c’, ‘d’, ‘e’}{‘x’, ‘y’, ‘z’}
2. {‘a’, ‘c’, ‘e’}{‘x’, ‘y’, ‘z’, ‘b’, ‘d’}
3. {‘b’, ‘d’}{‘b’, ‘d’}
4. {‘a’, ‘c’, ‘e’}{‘x’, ‘y’, ‘z’}
{‘a’, ‘c’, ‘e’}
{‘x’, ‘y’, ‘z’, ‘b’, ‘d’}
1. d = {}
2. d = {“john”:40, “peter”:45}
3. d = {40:”john”, 45:”peter”}
4. All of the mentioned
All of the mentioned
1. “john”, 40, 45, and “peter”
2. “john” and “peter”
3. 40 and 45
4. d = (40:”john”, 45:”peter”)
“john” and “peter”
1. True
2. False
3. None
4. Error
True
1. True
2. False
3. None
4. Error
False
1. True
2. False
3. Error
4. None
Error
1. 40
2. 45
3. “john”
4. “peter”
40
1. d.delete(“john”:40)
2. d.delete(“john”)
3. del d[“john”]
4. del d(“john”:40)
del d[“john”]
1. d.size()
2. len(d)
3. size(d)
4. d.len()
len(d)