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;}

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

ANSWER DOWNLOAD EXAMIANS APP