What is the output?
class Output 
    {
         public static void main(String args[]) 
        {
            double x = 2.0;  
            double y = 2.0;
            double z = Math.pow( x, y );
            System.out.print(z);
        }
    }

Posted on by