Singleton is a creational design pattern that lets you ensure that a class has only one instance, while providing a global access point to this instance.
To have only one instance of this object in the application that will handle all calls.
DB Connector
Logger
Lock file for the application
A country must have only one government or president. Through many members are formed the government. So the government or the president of any country like Singleton pattern.
source : online
(Example )