Answer:I need clarification
Explanation:
Yes.
Language affects the way we think about things. Different languages embed diferent values and perspectives, so knowing more than one langage tends to help a person think about things in more than one way.
Answer:
Good ozone is found in the stratosphere, far above the Earth's surface. At that height, it absorbs and scatters ultraviolet (UV) radiation from the Sun, particularly the most dangerous UV-B and UV-C forms. Ozone is the planet's natural sunscreen.
Explanation:
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
if (boolean expression)
{
Do statement;
}
// A block if statement: { } required
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Note
D I believe but I’m not so sure