Answer:
automotive engine cylinder heads can be made of cast iron or aluminum
H tht would be the correct answer
Solve the problems to make every thing work perfect
Answer:
function currentPopulation = CalculatePopulation(numGeneration, initialPopulation)
i = 1;
currentPopulation = initialPopulation;
while(i <= numGeneration)
currentPopulation = 2* currentPopulation;
i= i+1;
end
end
Explanation:
- Assign 1 to i as an initial loop value
.
- Assign initialPopulation to currentPopulation variable.
- Run the while loop until i is less than numGeneration.
- Inside the while loop, double the currentPopulation variable.
- Inside the while loop, Increment the i variable also.