1.Consider the following statement: int alpha[25][10]; which of the following statements about alpha is true? a. rows of alpha are numbered 0...24 and columns are numbered 0...9 b. rows of alpha are numbered 0...24 and columns are numbered 1...10 c. rows of alpha are numbered 1...24 and columns are numbered 0...9 d. rows of alpha are numbered 1...25 and columns are numbered 1...10 2. 1. If the derived class classD overrides a public member functionName of the base class classB, then to specify a call to that public member function of the base class you use the____ statement. a. classD::functionName(); b. classB::functionName(); c. classD.functionName(); d. classB.functionName();