Vidyalelo
C# Programming · Q215

Classes and Objects in C Sharp

Programming · C# Programming · question 215

Q215

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

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board