Looks like no one added any tags here yet for you.
Fields can have different access levels, which control their visibility and accessibility:
‘public‘: The field is accessible from any class.
‘private‘: The field is accessible only within the class itself.
protected: The field is accessible within the class, its subclasses, and classes in the same package.
Default (no modifier): The field is accessible within the class and other classes in the same package.