Q833
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 = 0; double z = 0; try z = division(x, y); cout << z << endl; catch (const char* msg) cout << msg << endl; return 0;
A.
50
B.
0
C.
Division by zero condition!
AnswerD.
100
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board