Answer:
C. Stores food.
Explanation:
The function of crop is to store the food prior to digestion.
Hope this helps!
This is false!
Whenever you use a source in your work, or an idea that is not yours, you should cite it. This applies to unpublished work, too.
Think about like this- in this case no one can ever accuse you of plagiarism- after all you were open about the source in the first place!
Answer:
if-else
Explanation:
Based on the information provided within the question it can be said that the best statement to use in this situation is an if-else statement. Like mentioned, this is a statement that outputs two different results depending on whether or not the input meets a predefined set of rules.
For Example: Input is 17
if (hour < 18) {
greeting = "Good day";
} else {
greeting = "Good evening";
}
Output would be "Good evening" in this situation