Q. Static variables in a class are initialized when _____.
β
Correct Answer: (C)
the first object of the class is created
Explanation: A static member is shared by all objects of the class. All static data are initialized to zero when the first object is created, if no other initialization is present.