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

Only the Test class.
None of these
Any class in com.mypackage package.
Any class.
Any class that extends Test.

ANSWER DOWNLOAD EXAMIANS APP