Examveda

What will be the output of the following C# code?
class maths
{
    public int fun(int k, int y)
    {
        return k + y;
    }
    public int fun1(int t, float z)
    {
        return (t+(int)z);
    }
}    
class Program
{
    static void Main(string[] args)
    {
        maths obj = new maths();
        int i;
        int b = 90;
        int c = 100;
        int d = 12;
        float l = 14.78f;
        i = obj.fun(b, c);
        Console.WriteLine(i);
        int j = (obj.fun1(d,  l));
        Console.WriteLine(j);
        Console.ReadLine();
    }
}

A. 190, 26.78f

B. 0, 26.78f

C. 190, 26

D. 190, 0

Answer: Option C


Join The Discussion

Related Questions on Classes and Objects in C Sharp