What can directly access and change the value of the variable qusNo?
package com.mypackage;public class Test{ private int qusNo = 100;}

What can directly access and change the value of the variable qusNo?

package com.mypackage;public class Test{ private int qusNo = 100;}
Correct Answer Only the Test class.

Related Questions

Which statements are most accurate regarding the following classes?
class A{ private int i; protected int j;}class B extends A{ private int k; protected int m;}
Which statements are most accurate regarding the following classes? class A{ private int i; protected int j; } class B extends A{ private int k; protected int m; }
public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?
Comment on the following 2 C programs.
#include  //Program 1int main(){ int a; int b; int c;}#include  //Program 2int main(){ int a; { int b; } { int c; }}