🎴 Flashcard Mode

Programming Languages: Java, C++, and C# Basics

Card1 / 20
Mastered0
Review0
QuestionClick to flip

Read-only Properties will be having only a set accessor in the property implementation?

AnswerClick to flip back
A
False
💡 Explanation:

Read-only properties have only a get accessor (getter), not a set accessor. The statement incorrectly claims they have only a set accessor. Write-only properties would have only a set accessor.

Change Mode