Answer:
water is the universals solvent and the compound that wouldnt disolve is oli because water and oil don't mix
Explanation:
Answer:
<em>Respiration and photosynthesis. </em>
Explanation:
<em>Respiration provides the cell with oxygen while photosynthesis provides it with carbon dioxide. Both functions release what is needed for the other. Therefore, these functions interact.</em>
Explanation:
if u read the passage then u would know it so i prefer going thru passage and reading questions
DNA analysis helps scientists classify similar animals by the evidence of relatedness in general the more derived genetic characters to organisms share the more closely repeated they are...In other words “DNA helps scientists by comparing the similarities in each animal/person’s DNA.
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