1)Override the Student's OutputIdentity() pure virtual method to display the text "I am a student" to the console
2)Override the Student's OutputAge() virtual method to display the text "I am a student" and then calls the Person class's OutputAge() method
how do i call the person class outputage method?is it saying that i call the person's class outputage method using student1 pointer or create a new pointer pointing to a person's class object and use that pointer to call that method?