Answer:
dark adaptation
Explanation:
Dark adaptation: The term dark adaptation refers to the phenomenon through which an individual's eyes can adjust to darkness after he or she has been exposed to light for a specific period. Eventually, the eyes adapt to the darkness by recovering it and becomes more sensitive in dim light. It happens after the pupils of a person gets dilated and changes or alters the cones and rods of the person's eyes.
In the question above, Cathy has experienced the phenomenon known as dark adaptation.
The primary food producing organs of a plant. They are designed to efficiently collect light and use that light energy to produce food. Directly beneath epidermis, it is responsible for most photosynthesis, tightly packed. Located between the Palisade Mesophyll and the Spongy Mesophyll.
A pure substance is something that occurs in nature. An element is made up of one type of atom only and cannot be split further.
In simpler terms it is true an element is a substance that is made of ONE type of atom
Answer:
The pseudocode is as follows:
input name
while name != "STOP"
print name
input name
End while
Explanation:
This gets name from the user
input name
This loop is repeated until the user inputs "STOP".
while name != "STOP"
This prints the name entered by the user
print name
This gets another name input from the user
input name
The loop ends here
End while