Podcast Beta
Questions and Answers
Which visibility modifier in Kotlin means that the member is visible inside the class only (including all its members)?
Which visibility modifier in Kotlin means that the member has the same visibility as one marked as private, but it is also visible in subclasses?
Which visibility modifier in Kotlin means that any client inside the module who sees the declaring class sees its internal members?
Which visibility modifier in Kotlin means that any client who sees the declaring class sees its public members?
Signup and view all the answers
What is the default visibility modifier in Kotlin?
Signup and view all the answers