Singleton Pattern belongs to Creational type pattern which is used when we need to ensure that only one object of a particular class is Instantiated. That single instance created is responsible to coordinate actions across the application.
Read more.....