โ Back to Encapsulation
Question 464
Computed Boolean Property
Computed Boolean Property
Create a classVoterwhose constructor stores aprivate int age. Add a read-only propertyIsAdultthat returnstruewhen the age is 18 or greater, andfalseotherwise. Do not write aMainmethod. Fornew Voter(20)the program prints: True
Expected Output:
True
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.