CJCoding With Joseph

Pass Values To Base

The base class Person stores a name and age set through its constructor. Teacher inherits from Person. Complete the Teacher constructor so it forwards BOTH parameters to the base constructor using : base(...). Do NOT write a Main method.

When the tester creates Teacher("Sam", 30) and calls Introduce(), the program prints:
Sam is 30

Expected Output:

Sam is 30
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.