โ Back to Interfaces
Question 636
Use a Default Interface Method
Use a Default Interface Method
TheINamedinterface declaresGetName()and provides a DEFAULT implementation ofGreet()that returnsHello,followed by the name. Write aStudentclass that implements onlyGetName()(returning the constructor's name) and reuses the defaultGreet(). The tester callsGreet()through anINamedreference. Do NOT write aMainmethod. For a student named Sam the program prints: Hello, Sam
Expected Output:
Hello, Sam
Topics:
Interfaces
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.