Podcast
Questions and Answers
Static variables are good for ______ management.
Static variables are good for ______ management.
memory
Changes made in an instance variable using one object will not be reflected in other objects as each object has its own copy of the instance ______.
Changes made in an instance variable using one object will not be reflected in other objects as each object has its own copy of the instance ______.
variable
Static variables are created when the program ______ and destroyed when the program stops.
Static variables are created when the program ______ and destroyed when the program stops.
starts