What will be the output of the following Python code? my_dict = {'a': 1, 'b': 2, 'c': 3} for key, value in my_dict.items(): if value % 2 == 0: print(key) a) a b) b c) c d) a, c
10
2
8
2K
3
@PythonDQ B cz the remainder is only 0 when divided by 2