Loop unrolling is a code optimization technique:
- That avoids tests at every iteration of the loop.
- That improves performance by decreasing the number of instructions in a basic block.
- That exchanges inner loops with outer loops
- That reorders operations to allow multiple computations to happen in parallel
Answer : A,
Explanation:
That avoids tests at every iteration of the loop.
Do U have Better Solution ?
Contribute your Solution in Comment Section below