1. Which of the following doesn’t require an & for the input in scanf? a) char name[10]; b) int name[10]; c) float name[10]; d) all of the mentioned AnswerAnswer: a [Reason:] None. 2. Which of the following is an invalid method for input? a) scanf(“%d%d%d”,&a, &b, &c); b) scanf(“%d %d %d”, &a, &b, &c); c)…