Tadpoles have gills allowing them to breathe underwater while frogs have lungs. Tadpoles have tails and fins to help them swim while frogs have arms and legs.
People used vaccines to reduce the risk of infection by working with body as defenses to help them so this vaccines develop immunity to disease
I hope that's help:0
The water cycle is referred to as a continuous cycle because it repeats everyday. It's a cycle with no end.
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
Answer:
b
Explanation:
i just took the quiz on k12 and got it right