Solve the second question not first
actually the first question is to be solved with classes but forsecond one make use of pointers to solve the questionExercises: 01. (25 marks) Write a program that takes a matrix of size Nx N of integers as input and returns: The largest number The smallest number The median The average The sum Do not use C++ standard library. You must use pointers and pointer arithmetic to represent the matrix and to navigate through it. Deliverable: 01.cpp (and header files if you decide to use functions or classes) Q2. Modify Q1 of Assignment 1 by using two pointers to integers instead of two integers. The program should behave the exact same way. Deliverable: Q2.cpp (and header files for function prototype). 03. (25 marks) Consider the following class: 7 date. */ #ifndef DATE H #define DATE H class Date public: Date(int-1, int 1, 2000); sets day, month, year void setDate(int, int int) sets the date void printDate() const; print data to the screen private Show transcribed image text Exercises: 01. (25 marks) Write a program that takes a matrix of size Nx N of integers as input and returns: The largest number The smallest number The median The average The sum Do not use C++ standard library. You must use pointers and pointer arithmetic to represent the matrix and to navigate through it. Deliverable: 01.cpp (and header files if you decide to use functions or classes) Q2. Modify Q1 of Assignment 1 by using two pointers to integers instead of two integers. The program should behave the exact same way. Deliverable: Q2.cpp (and header files for function prototype). 03. (25 marks) Consider the following class: 7 date. */ #ifndef DATE H #define DATE H class Date public: Date(int-1, int 1, 2000); sets day, month, year void setDate(int, int int) sets the date void printDate() const; print data to the screen private
Expert Answer
Answer to Solve the second question not firstactually the first question is to be solved with classes but for second one make use …