Multiple choice technology programming languages Which of them is false about a Static data member within a class A single copy of the data member exists The data member is initialised to zero before the first object is created Requires a global definition Storage is allocated to the static data member on declaration Reveal answer Fill a bubble to check yourself D Correct answer Explanation Static data members are declared in the class but storage is NOT allocated at declaration - only at definition outside the class. This makes option D the false statement. The other options correctly describe static member behavior.