โ Back to Classes
Question 94
Create a Person Class
Create a Person Class
Create a class named Person with one private member: String name. Requirements: 1. Make a default constructor Person() that sets name to "John". 2. Create a public method getName() that returns the name. IMPORTANT: Do NOT write a main method for this question. Your class will be tested with a hidden Main class that creates a Person object and prints getName(). Expected Output: John
Expected Output:
John
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.