Predict the output of the program 
class sookshmas
    {
        int width;
        int height;
        int length;
    } 
    class main
    {
        public static void main(String args[]) 
        {        
             box obj = new box();
             obj.width = 100;
             obj.height = 20;
             obj.length = 100;
             int y = obj.width * obj.height * obj.length; 
             System.out.print(y);
        } 
    }

Posted on by