Multiple choice

______ symbol indicates the protected access specifier.

  1. +

  2. -

  3. #

  4. $
Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In UML class diagrams, # symbol represents protected access specifier. Protected members are accessible within the class and its subclasses but not from external code. This intermediate access level balances public accessibility with private restriction.