CJCoding With Joseph
15per day

Set and Get a Favorite Color

Create a class named Profile with one private member: String favoriteColor.

Requirements:
1. Create a default constructor Profile() that sets favoriteColor to "Blue".
2. Create a public setter setFavoriteColor(String newColor) that updates favoriteColor.
3. Create a public getter getFavoriteColor() that returns favoriteColor.

IMPORTANT: Do NOT write a main method. A hidden Main will create a Profile, call setFavoriteColor("Green"), then print getFavoriteColor().

Expected Output:
Green

Expected Output:

Green
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.