Singleton class can have?
-
More than one Object
-
No Objects
-
Only One Objects.
-
Two Objects.
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.