Answer:
Vegetation def is: growing plants, or a life without physical, mental or social activity
Vegetative depends on the context. Mainly just means without brain activity
why yes it is
my proof : Plants are living because they grow, take in nutrients and reproduce. Trees, bushes, a cactus, flowers and grass are examples of plants. Plants are also living things. Plants are living because they grow, take in nutrients and reproduce.
<h2>Answer:</h2>
(D)
<h2>Explanation:</h2>
The uneven heating of the Earth’s surface heats up the air which stirs up air currents in the atmosphere Ex. Jet streams, Easterly, Westerly winds.
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