Vidyalelo
C++ Programming · Q176

Functions and Procedures in C++

Programming · C++ Programming · question 176

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
Answer
B.
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