Multiple choice question for engineering Set 1 1. Which alternative can replace the throw statement? a) for b) break c) return d) exit AnswerAnswer: c [Reason:] throw and return does the same job like return a value. So it can be replaced. 2. What are the disadvantages if use return keyword to return error codes?…