Is the following piece of code valid? >>> a=(1,2,3) >>> b=('A','B','C') >>> c=zip(a,b) a) Yes, c will be ((1,2,3),(‘A’,’B’,’C’)) b) Yes, c will be ((1,2,3),(‘A’,’B’,’C’)) c) No because tuples are immutable d) No because the syntax for zip function isn’t valid