CJCoding With Joseph
15per day

Create a City Class

Create a class named City with one private member: String name.

Requirements:
1. Make a default constructor City() that sets name to "Toronto".
2. Create a public method getName() that returns name.

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

Expected Output:
Toronto

Expected Output:

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