Assume you have created a class named MyClass and that is contains a private field named
myField and a nonstatic public method named myMethod(). Which of the following is
true?
a. myMethod() has access to and can use myField
b. myMethod() does not have access to and cannot use myFeild.
c. myMethod() can use myField but cannot pass it to other methods.
d. myMethod() can use myField only in myField is passed to myMethod() as a
parameter.