Answer:
The tension on the string is
Explanation:
From the question we are told that
The mass of the rock is 
The density of the rock is
Generally the volume of the rock is mathematically evaluated as

substituting values


The volume of the rock immersed in water is
substituting values


mass of water been displaced by the this volume is
According to Archimedes principle
=> 

The weight of the water displace is



The actual weight of the rock is

The tension on the string is
substituting values
As per Newton's law rate of change in momentum is net force
so we can write it as


now we know that




from above equation

so he will experience 900 N force in above case
Nitrogen oxides play a critical role in photochemical smog. They give the smog its yellowish-brown hue. Indoor residential appliances like gas stoves and gas or wood heaters can be significant emitters of nitrogen oxides in poorly ventilated environments.
- Nitrogen dioxide (NO₂), ozone (O₃), peroxyacetyl nitrate (PAN), and chemical compounds with the -CHO group are the main harmful elements of photochemical smog (aldehydes). If present in high enough amounts, PAN and aldehydes can harm plants and irritate the eyes.
- The greatest sources of emissions are power plants, heavy construction equipment driven by diesel, other moveable engines, and industrial boilers. Cars, trucks, and buses are next in line.
Therefore , on conclusion i.e. two gases with molecules consisting of nitrogen and oxygen atoms are nitric oxide (NO) and nitrogen dioxide (NO₂). These nitrogen oxides play a part in the development of smog and acid rain, adding to the issue of air pollution.
To know more about photochemical smog
brainly.com/question/15635778
#SPJ1
The answer is B. desert. Deserts don't get much rainfall to begin with and most of it evaporates.
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.