Multiple choice technology programming languages

Static properties can access any members of the class?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Static properties belong to the class itself, not to instances. They can only access static members (other static fields, properties, or methods), not instance members which require an object reference.