Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 5 (Q.No. 10)
10.
Static variables are sometimes called
class variables
functional variables
dynamic variables
auto variables
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Ayesha said:   5 years ago
Static variables are sometimes called class variables, class fields, or class-wide fields because they don't belong to a specific object; they belong to the class. We can call to the static variables without instantiate the class object. We can call the static variables just by using class name.

Post your comments here:

Your comments will be displayed after verification.