CJCoding With Joseph

Feed The Animal With is

Feeder has a method Feed(Animal a). Using the is operator, return "give fish" when the animal is a Cat, otherwise return "give food". Cat inherits from Animal. Do NOT write a Main method.

For a Cat the program prints:

give fish

For any other Animal it prints:

give food

Expected Output:

give fish
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.