InterviewSolution
Saved Bookmarks
| 1. |
Pick out the correct statement for error handling alternatives.(a) Terminate the program(b) Use the stack(c) Exit from the block(d) Use the queue |
|
Answer» The correct answer is (b) Use the stack The best I can explain: When an error is raised means, it will be pushed into stack and it can be corrected later by the programmer. |
|