Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int operate (int a, int b)
{
    return (a * b);
}
float operate (float a, float b)
{
    return (a / b);
}
int main ()
{
    int x = 5, y = 2;
    float n = 5.0, m = 2.0;
    cout << operate (x, y);
    cout << operate (n, m);
    return 0;
}

A. 119

B. 102.5

C. 123.4

D. 128.4

Answer: Option B


Join The Discussion

Related Questions on Classes and Objects in C plus plus