CJCoding With Joseph
15per day

Create a Car Class

Create a class named Car with one private member: String brand.

Requirements:
1. Make a default constructor Car() that sets brand to "Toyota".
2. Create a public method getBrand() that returns the brand.

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

Expected Output:
Toyota

Expected Output:

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