Answer:
Please, see the attachment.
Explanation:
First, we have to create two input boxes that allows the user to write the current year in one of them and his/her birth year in the another one. Also, we have to create a label that will show the result of the desired variable. We can write a message "Your age is:" and it will be attached to the result.
For the algorithm, let's call the variables as follows:
CY = Current Year
BY = Birth Year
X = Age of user
When the user inserts the current year and his/her birth year, the program will do the following operation:
X = CY - BY; this operation will give us the age of the user
After this the user will see something like "Your age is:" X.
Answer:
F = 8552.7N
Explanation:
We need first our values, that are,

We start to calculate the relative velocity, that is,

With the relative velocity we can calculate the mass flow rate, given by,



We need to define the Force in the direction of the flow,




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); } }
Answer:
a) benzene = 910 days
b) toluene = 1612.67 days
Explanation:
Given:
Kd = 1.8 L/kg (benzene)
Kd = 3.3 L/kg (toluene)
psolid = solids density = 2.6 kg/L
K = 2.9x10⁻⁵m/s
pores = n = 0.37
water table = 0.4 m
ground water = 15 m
u = K/n = (2.9x10⁻⁵ * (0.4/15)) / 0.37 = 2.09x10⁻⁶m/s
a) For benzene:

The time will take will be:

b) For toluene:


Answer:
Explanation:
Products of oil in our everyday life:
(1) Petro-Chemical Feedstock: These are by product of Refining of Oil which it is used extensively to make PET bottles, Paints, Polyester Shirts, Pocket combs e.t.c
(2) Asphalt : Used extensively to make Motor Road, highways
(3) Plastics : we use plastics in our everyday life, this is also a product of Refining of crude oil e.g PVC, Telephone casing, Tapes e.t.c
(4) Lubricating Oil/Grease : This is another product from crude oil Fractional Distillation.
(5) Propane/ Cooking Gas: This is also a product from oil which is used in our everyday life for cooking, grilling etc.