a. It searches in the current directory
    b. it searches in the location set in the CLASSPATH environment variable.     c. A user can set the path during runtime using the -classpath option.
3)
    a. Java packages are heirarchical
4)
    d. packages are used to organize onlu a set of related classes and not interfaces.
5)
    a. It wil give compile-time error
6)
    b. JRE     d. JRE without JDK
7)
    a. JDK
8)
    Options b,c,d are correct
9)
    a. Runnable is a class present in java.lang package.
10)
    a. With the import statement, generally import only a single package member or an enitre package.
   b. To import all the types contained in a particular package, use the import statement with asterisk(*) wildcard character.               import package.*;
    d.import package.A*; it gerenerates compilataion error