-
What will happen when we move to try block far away from catch block?
-
- Increases the amount of code in cache
- Don’t alter anything
- Reduces the amount of code in cache
- All of above
- None of these
Correct Option: C
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.