โ Back to Encapsulation
Question 456
Computed Full Name Property
Computed Full Name Property
Create a classContactwhose constructor stores aprivatefirst name and last name. Add a read-only propertyFullNamethat returns the first name, a single space, then the last name. Do not write aMainmethod. Fornew Contact("Ada", "Lovelace")the program prints: Ada Lovelace
Expected Output:
Ada Lovelace
Topics:
Encapsulation
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.