Answer:
The velocity of flow is 10.0 m/s.
Explanation:
We shall use Manning's equation to calculate the velocity of flow
Velocity of flow by manning's equation is given by

where
n = manning's roughness coefficient
R = hydraulic radius
S = bed slope of the channel
We know that for an asphalt channel value of manning's roughness coefficient = 0.016
Applying values in the above equation we obtain velocity of flow as

Answer:
The mass flow rate of the mixture in the manifold is 6.654 kg/min
Explanation;
In this question, we are asked to calculate mass flow rate of the mixture in the manifold
Please check attachment for complete solution and step by step explanation.
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).