Two species of birds overlap in a forest valley. Occasionall…

Two species of birds overlap in a forest valley. Occasionally, they mate and produce hybrid chicks. Over generations, scientists notice that hybrids are weak and rarely survive, and the two parent species continue to remain distinct. Which hybrid zone outcome does this represent? (3 points)

This question has two parts. Consider the following code for…

This question has two parts. Consider the following code for both parts.for (int i = 1; i < N; i++) {    a[i] = a[i - 1] + 1.0f;}Unroll the loop by one iteration. In other words, re-write the loop so that the loop counter increments by two but the same work gets done.Name the type of dependency.