Examveda

What will be the output of the following C# code?
class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine( vol(10));
        Console.WriteLine( vol(2.5f,  5));
        Console.WriteLine( vol( 5l,  4,  5));
        Console.ReadLine();
    }
    static int vol(int x)
    {
        return(x * x * x);
    }
    static float vol(float r,  int h)
    {
        return(3.14f * r * r * h);
    }
    static long vol(long l, int b, int h)
    {
        return(l * b * h);
    }
}

A. 1000
0
100

B. 0
0
100

C. compile time error

D. 1000
98.125
100

Answer: Option D


Join The Discussion

Related Questions on Classes and Objects in C Sharp