Which of the following statements is false about 'Singleton' design pattern?
This pattern specifies the class creation for a particular object only.
It is useful for exposing read-only data.
This pattern virtualises storage of entities in a persistent medium.
The static methods do not rely on instance data.
If this is the first call to the method that returns the instance, the Singleton creates an instance, populates it with any required data and returns that instance.