Answer:0.1898 Pa/m
Explanation:
Given data
Diameter of Pipe
Velocity of water in pipe
We know viscosity of water is
Pressure drop is given by hagen poiseuille equation

We have asked pressure Drop per unit length i.e.

Substituting Values

=0.1898 Pa/m
Answer:The Urban heat island temperature will be REDUCED.
Two Impacts of Rooftop gardens
1) provision of shade against Sunlight.
2) It helps to purify the air around the building.
Explanation: Rooftop gardens are gardens made on top of the roofs of buildings, it is a Green initiative aimed at helping to improve the overall Environment.
Rooftop gardens have several significant benefits which includes
Reduction of the surrounding temperatures and the Urban heat Island temperatures.
Rooftop gardens helps to shade the roof from the direct impacts of harsh weather conditions.
Generally, plants are known as air purifiers as they remove the excess Carbondioxide around the environment through photosynthesis, and they also help to release water vapor which will help to improve the humidity of the environment.
Answer is in the photo. I can only upload it to a file hosting service. link below!
linkcutter.ga/gyko
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Answer: hope it helps
Explanation:Moving air has a force that will lift kites and balloons up and down. Air is a mixture ... Here is a simple computer simulation that you can use to explore how wings make lift. ... All these dimensions together combine to control the flight of the plane. A pilot ... When the rudder is turned to one side, the airplane moves left or right.