InterviewSolution
Saved Bookmarks
| 1. |
Which alternative can replace the throw statement?(a) for(b) break(c) return(d) exit |
|
Answer» Right option is (c) return Easiest explanation - throw and return does the same job as return a value. So it can be replaced. |
|