📚 Practice Mode

Design Patterns in .NET Framework

Learn at your own pace with hints and detailed explanations

1 / 15
Multiple Choice

Which of the following is/are the correct statements for the Singleton design pattern in .Net?

  1. We can make Singleton class by making a private constructor of that class.
  2. Static initialization is suitable for multiple threaded Singleton class.
  3. Singleton class is used to save state and storing caches.
  4. All of the above.
  5. Only (1) and (3).