IDNLearn.com: Your destination for reliable and timely answers to any question. Discover prompt and accurate answers from our experts, ensuring you get the information you need quickly.

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.