Looking for reliable answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Get expert answers to your questions quickly and accurately from our dedicated community of professionals. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

This type of member variable may be accessed before any objects of the class have been created.

a. private
b. public
c. inline
d. static
e. None of these


Sagot :

Answer:

d. static

Step-by-step explanation:

This is a question about Java programming.

A class contains information about it's members(objects). Private, public or inline variables must be related to an object, that is, an object has to be created before the variable is acessed.

Static variables, otherwise, may pertain to the class, and not to the object, that is, and thus, the correct answer is given by option d.