Multiple choice technology programming languages What is a singleton? A class that is instantiated exactly once producing just one object of that class A complete program that takes up only one line of code A data structure such as a linked list that contains only one member None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation The singleton pattern restricts the instantiation of a class to one single instance, ensuring global access to that specific object across the application.