Q176
What will be the output of the following C++ code? #include using namespace std; double division(int a, int b) if (b == 0) throw "Division by zero condition!"; return (a / b); int main () int x = 50; int y = 2; double z = 0; try z = division(x, y); cout << z; catch(const char *msg) cerr << msg; return 0;
A.
25
AnswerB.
20
C.
Division by zero condition!
D.
35
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board