CJCoding With Joseph
15per day

Create a Cat Class

Create a class named Cat with one private member: String sound.

Requirements:
1. Make a default constructor Cat() that sets sound to "Meow".
2. Create a public method getSound() that returns the sound.

IMPORTANT: Do NOT write a main method for this question. Your class will be tested with a hidden Main class that creates a Cat object and prints getSound().

Expected Output:
Meow

Expected Output:

Meow
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.