adplus-dvertising
frame-decoration

Question

What is the output of this program?
    #include <iostream>
    using namespace std;
    template <class type>
    class Test
    {
        public:
        Test()
        {
        };
        ~Test()
        {  
        };
        type Funct1(type Var1)
        {
            return Var1;
        }
        type Funct2(type Var2)
        {
            return Var2;
        }
    };
    int main()
    {
        Test<int> Var1;
        Test<double> Var2;
        cout << Var1.Funct1(200);
        cout << Var2.Funct2(3.123);
        return 0;
    }

a.

100

b.

200

c.

3.123

d.

2003.123

Answer: (d).2003.123

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?