yes, coral polyps are a keystone species. it would be a keystone species because it is important in order for the coral to thrive.
Answer:
go for the second answer idk may be right i think
Explanation:
This answer to this question is <span>Basilosaurus. This was </span><span>a </span>genus<span> of prehistoric </span>cetacean. It lived<span> during the </span>Late Eocene<span> 40 to 35 </span>million years ago<span>. This species had tiny hind limbs and only three toes. To illustrate,</span> a<span> 16 m individual</span><span> had 35 cm long hind limbs with fused tarsals and only three digits.</span>
Answer: 3
Explanation:
Given :
numC = 12
while numC > 3:
numC = numC / 2
Initial value of numC = 12
The condition checks if the value of numC is greater than 12, only then will the statement be executed and the loop isn't altered
numC = 12 is greater Than 3 ;
numC = numC/2 = 12/2 = 6
numC is now 6 ;
numC = 6 is greater than 3
numC = numC / 2 = 6/2
numC is now 3
numC = 3 is not greater than 3 ; hence, loop terminates (condition isn't met)
Hence , numC = 3