Check the true statement(s) (There is at least one correct choice, possibly more.)
a. A static method can access a static member (of the same class) inside its definition using only the member name, no object or class name prepended (i.e., without ClassName:: or someObj. in front).
b. A static method can access an instance member (of the same class) inside its definition using only the member name, no object or class name prepended (i.e., without someObj. in front).
c. An instance method can access a static member (of the same class) inside its definition using only the member name, no object or class name prepended (i.e., without ClassName:: or someObj. in front).
d. An instance method can access a static member (of the same class) inside its definition using only the member name, no object or class name prepended (i.e., without ClassName:: or someObj. in front).