Answer:
When the land heats up, the air above it heats up as well. On the other hand, the sea heats up and cools down relatively slowly. Therefore, areas near the sea generally stay cooler during the day and have a more moderate temperature range than inland areas.
Hope it will help you
Answer:
a
Explanation:
the correct answer is A. because a silversmith works with silver and pewter is a type of metal allow
if you're a United States citizen you can stay here in the United States
Answer:
A person who represents our country or state
Explanation:
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