Answer:
6.37 inch
Explanation:
Thinking process:
We need to know the flow rate of the fluid through the cross sectional pipe. Let this rate be denoted by Q.
To determine the pressure drop in the pipe:
Using the Bernoulli equation for mass conservation:

thus

The largest pressure drop (P1-P2) will occur with the largest f, which occurs with the smallest Reynolds number, Re or the largest V.
Since the viscosity of the water increases with temperature decrease, we consider coldest case at T = 50⁰F
from the tables
Re= 2.01 × 10⁵
Hence, f = 0.018
Therefore, pressure drop, (P1-P2)/p = 2.70 ft
This occurs at ae presure change of 1.17 psi
Correlating with the chart, we find that the diameter will be D= 0.513
= <u>6.37 in Ans</u>
Answer:
It is a non profit organization that dedicates to licensing professional engineers and surveyors
Explanation:
A type of shoot in which continuous lighting used is: 1) studio.
<h3>What is a photoshoot?</h3>
A photoshoot simply refers to a photography session which typically involves the use of digital media equipment such as a camera, to take series of pictures (photographs) of models, group, things or places, etc., especially by a professional photographer.
<h3>The types of shoot.</h3>
Basically, there are four main type of shoot and these include the following:
In photography, a type of shoot in which continuous lighting used is studio because it enhances the photographs.
Read more on photography here: brainly.com/question/24582274
#SPJ1
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:
I think Microsoft Corporation