-
What are the disadvantages if use return keyword to return error codes?
-
- The code becomes more difficult to read
- Your code size increases dramatically
- You have to handle all exceptional cases explicitly
- All of above
- None of these
Correct Option: D
As we are using return for each and every exception, It will definitely increase the code size.