InterviewSolution
Saved Bookmarks
| 1. |
Where are standard exception classes grouped?(a) namespace std(b) error(c) catch(d) final |
|
Answer» Right answer is (a) namespace std Easiest explanation - As these are standard exceptions, they need to be defined in the standard block, So it is defined under namespace std. |
|