014-006-003
super Keyword: Calling Parent Method
Easy
Problem Description
super Keyword: Calling Parent method
In this problem, you will create a program that calls a parent class method from a subclass using the super keyword, combines the result with additional output, and displays both lines to standard output.
Learning Objective: Call parent class method using super
Use super to call parent class method from subclass and combine results.
Input
1 line: Product name
Output
Product: [product name]
Discount applied!
Example
Input:
Laptop
Output:
Product: Laptop
Discount applied!
Ready to Try Running Code?
Log in to access the code editor and execute your solutions for this problem.
Don't have an account?
Sign Up