In the following code, which statement is the throw point?
```
double divide(int numer, int denom)
{
if (denom == 0)
throw "ERROR: Cannot divide by zero.\n";
else
return static_cast
}
```
a. if (denom == 0)
b. throw "ERROR: Cannot divide by zero.\n";
c. return static_cast
d. There is no throw point because there is no try block.
e. None of these
b. throw "ERROR: Cannot divide by zero.\n";
You might also like to view...
One way to reduce spam is to use a(n) ____________________ e-mail address.
Fill in the blank(s) with the appropriate word(s).
Web conferences typically take place via a personal computer or mobile phone and are used by businesses and individuals.
Answer the following statement true (T) or false (F)
What general type of cabling is a technician most likely to use today when installing Ethernet cabling in areas with high electrical interference?
A. Shielded twisted pair (STP) B. Coaxial C. Fiber-optic D. Twinaxial copper
Which loop structure always executes at least once?
a. do-while b. for c. while d. sentinel