Answer:
Because it is a solid that has trapped air with the water molecules in cold temperature thus creating a hard solid.
A suspension is a heterogeneous mixture in which solute-like particles settle out of a solvent-like phase sometime after their introduction.
Answer:
A mass
Explanation:
I learned it in 8th grade.
DNA ligase <span>s responsible for creating the covalent bonds that connect the sugar phosphate backbone of the new DNA molecules</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