Q11Multiple correct4 Marks22 Dec 2024Let D be a non-empty dictionary. Choose the correct option(s). It is a Multiple Select Question (MSQ).ALet a be a key of dictionary D, then a is always an integer.BFor keys a and b in D, if a != b then D[a] != D[b] is always True.CFor keys a and b in D, if D[a] != D[b] then a != b is always True.D``` If D = {'a': 5, 'b': [3, 4, 7], 'c': 6}, then the value of init(D['b']) is [4, 7]. ```