Answer:
See explaination
Explanation:
int RED=10; int BLUE=11; int GREEN=12; int BUTTON1=8; int BUTTON2=9; void setup() { pinMode(RED, OUTPUT); pinMode(BLUE, OUTPUT); pinMode(GREEN, OUTPUT); pinMode(BUTTON1, INPUT); pinMode(BUTTON2, OUTPUT); } void loop() { int BTN1_STATE=digitalRead(BUTTON1); int BTN2_STATE=digitalRead(BUTTON2); if(BTN1_STATE==HIGH) { digitalWrite(BLUE, HIGH); delay(1000); // Wait for 1 second digitalWrite(BLUE, LOW); } if(BTN2_STATE==HIGH) { digitalWrite(RED, HIGH); delay(4000); // Wait for 4 seconds digitalWrite(RED, LOW); } if(BTN1_STATE==HIGH && BTN2_STATE==HIGH) { digitalWrite(GREEN, HIGH); delay(2000); // Wait for 2 second digitalWrite(GREEN, LOW); } }
To solve this problem it is necessary to apply the concepts related to density in relation to mass and volume for each of the states presented.
Density can be defined as

Where
m = Mass
V = Volume
For state one we know that




For state two we have to




Therefore the total change of mass would be



Therefore the mass of air that has entered to the tank is 6.02Kg
It is very important to know where online information comes from in order to validate, authenticate and be sure it's the right information
<h3>What are online information?</h3>
Online informations are information which are available on the internet such as search engines, social handles and other websites
In conclusion, it is very important to know where online information comes from in order to validate, authenticate and be sure it's the right information
Learn more about online information:
brainly.com/question/921157
#SPJ1