top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is singleton class in android?

0 votes
291 views
AA class that can create only one object
BAnonymous class
CJava class
DManifest file

Correct Option: 1  

Explanation:
There is only an object which can be accessed by all other class.
posted Nov 27, 2017 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+2 votes

I know the definition of singleton class i.e. a class for which only one object can be defined or initialized. But I want to know all the possible ways to achieve this restriction.

...