Consider the given lines of codE.
package ucert
class memberaccess
{
public int mem = 10;
}
Which of the following can directly access the variable mem?
Any class
Any class that extends the memberaccess class
Only the memberaccess class
Any class in the package ucert
Submit