Computer Science, asked by ahmad202020, 5 months ago

If you define a field as static, then there is only one such field per object. in java


Select one:
True
False

Answers

Answered by charanimukku
0

Answer: True

Explanation: If a field is declared static then there is one field for the entire class instead of one per object. A static field of a class is often referred to as a class variable because the static field is associated with a class and not with individual instances of the class.

Similar questions