Q. What can directly access and change the value of the variable qusNo?
package com.mypackage;
public class Test{
private int qusNo = 100;
}
package com.mypackage;
public class Test{
private int qusNo = 100;
}
β
Correct Answer: (A)
Only the Test class.