Multiple choice general knowledge

Static members can be called without having an instance.

  1. True

  2. False

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

Static members (methods and variables) belong to the class itself, not to instances of the class. They can be called using the class name directly without creating any object. This is why static methods are often used for utility functions that don't require object state.