not able to execute below 2 programs ?how to execute it .
package cert;
public class Beverage
{
}
package exam.stuff;
import cert.Beverage;
class Tea extends Beverage
{
public static void main(String argd[])
{
System.out.println("hello world");
}
}
I am able to compile above 2 programs but when i am executing i am geting exception in thread main. so how can i execute this Tea program