Trees are the most important part of our environment. They are having a direct impact on our lives. We can’t breathe except the existence of trees in the world. They leave the most important thing oxygen for us. But it is a matter of sorrow that day by day, the tendency of deforestation has been increased in the peak. It has been a matter of afraid now.
Due to the high tendency of deforestation, the world is lacking enough amount of oxygen. We need to plant more and more trees to make it normal. We have seen lots of examples that the world will face a hard time except for the existence of trees. Already, lots of species of trees have been extinct.
To fight against all the environmental odds, we need to grow more trees. The best time of growing trees is the rainy season. The soil has the best capacity to grow trees in this season. Trees have lots of uses for our regular life. We can make money and maintain our life with it. It is the biggest source of food.
If you plant lots of fruit trees, you can make a business on it. From today, we all need to start planting more and more trees.
Answer:
Please check the attachment.
Explanation:
avg turnaround time = (38+7+42+33+18)/5= 27.6
avg waiting timee = (33+5+28+23+17)/5= 21.2
And its D, A C in Gantt chart at last and exit time are 33, 38 and 42 mentioned as last three in Gantt chart.
<h2>
Answer:</h2>
F = 13
<h2>
Explanation:</h2>
Given:
x = false
y = 5
z = 1
F = (4%2)+2*Y +6/2 +(z&&x)
We solve this arithmetic using the order of precedence:
<em>i. Solve the brackets first</em>
=> (4 % 2)
This means 4 modulus 2. This is the result of the remainder when 4 is divided by 2. Since there is no remainder when 4 is divided by 2, then
4 % 2 = 0
=> (z && x)
This means (1 && false). This is the result of using the AND operator. Remember that && means AND operator. This will return false (or 0) if one or both operands are false. It will return true (or 1) if both operands are true.
In this case since the right operand is a false, the result will be 0. i.e
(z && x) = (1 && false) = 0
<em>ii. Solve either the multiplication or division next whichever one comes first.</em>
=> 2 * y
This means the product of 2 and y ( = 5). This will give;
2 * y = 2 * 5 = 10
=> 6 / 2
This means the quotient of 6 and 2. This will give;
6 / 2 = 3
<em>iii. Now solve the addition by first substituting the values calculated earlier back into F.</em>
F = (4%2)+2*Y +6/2 +(z&&x)
F = 0 + 10 + 3 + 0
F = 13
Therefore, the value of F is 13