What is wrong with the following Python code? a=(12,3),2
a) A Tuple is immutable so the add operation will generate an error
b) Pop operations will generate errors
c) Nothing, the code is syntactically correct
d) Tuple addition is not allowed in Python