A singleton object is created using the object keyword while a class is created using the class keyword.
B)
A singleton object only has a single instance, unlike a class which has multiple instances.
Your Answer
C)
A singleton object cannot be created using the new keyword while a class object must be created using the new keyword.