61.
What will be the output of the following Python code?
>>> a={i: i*i for i in range(6)}
>>> a

65.
What will be the output of the following Python code snippet?
total={}
def insert(items):
    if items in total:
        total[items] += 1
    else:
        total[items] = 1
insert('Apple')
insert('Ball')
insert('Apple')
print (len(total))

66.
If a is a dictionary with some key-value pairs, what does a.popitem() do?

69.
What will be the output of the following Python code snippet?
a={1:"A",2:"B",3:"C"}
print(a.setdefault(3))