Q114
What will be the output of the following C++ code? #include 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
AnswerC.
123.4
D.
128.4
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board