Multiple choice technology programming languages

Singleton class can have?

  1. More than one Object

  2. No Objects

  3. Only One Objects.

  4. Two Objects.

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

A Singleton class ensures only ONE instance of the class can exist. It provides a global point of access to that instance through a static method. This pattern is used when exactly one object is needed to coordinate actions across the system.