CJCoding With Joseph

SmartPhone Adds A Method

A derived class keeps everything it inherits and can add new members of its own. SmartPhone inherits Call() from Phone. Add a public method named BrowseWeb to SmartPhone that prints Browsing. Do NOT write a Main method.

When the tester calls Call() then BrowseWeb(), the program prints:
Calling
Browsing

Expected Output:

Calling
Browsing
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.