-
Which of the following statements are incorrect?
-
- static methods must only access static data
- when object of class is declared, each object contains its own copy of static variables
- static methods can call other static methods only
- static methods can not refer to this or super in any way
- None of these
Correct Option: D
All objects of class share same static variable, when object of a class are declared, all the objects share same copy of static members, no copy of static variables are made.