InterviewSolution
Saved Bookmarks
| 1. |
What will happen when we move to try block far away from catch block?(a) Reduces the amount of code in cache(b) Increases the amount of code in cache(c) Don’t alter anything(d) Increases the amount of code |
|
Answer» The correct answer is (a) Reduces the amount of code in cache Explanation: compilers may try to move the catch-code far away from the try-code, which reduces the amount of code to keep in cache normally, thus enhancing performance. |
|