5. Positive and Negative Impact of chemical industries.
Here are the positive impacts first:
=> It can discover a chemical product that can be helpful for us humans like physical beautification, medicines to a certain diseases and more that is beneficial to our health.
=> It can also help us learn more about the chemicals that is presents in our planet.
Here are the lists of the negative impacts:
=> Some Chemicals can be harmful to the nature and also to our body.
=> Some chemical can cause diseases especially those harmful ones.
Answer: False
Explanation:
The given statement is false, as it is not compulsory that the default case is require in switch selection statement. If the default case are not properly specified in the statement then, there will be no execution occur in the switch selection statement.
It is sometimes good to have default case in switch selection statement, but it is not mandatory. The default case only executed when the correct case is present and none of the case matches in the given statement.
Answer:
i think digital signals
Explanation:
A digital signal is a signal that is being used to represent data as a sequence of discrete values; at any given time it can only take on one of a finite number of values.[1][2][3] This contrasts with an analog signal, which represents continuous values; at any given time it represents a real number within a continuous range of values.
in c++
...
for(auto& el:hourlyTemp){
std::cout<<el<<", ";
}
...
This is called Range-based loop or for each loop