Answer: valving the pump discharge to reduce the flow will only result in an increase in the water velocity according to the laws of continuity of flow.
Q = AV = constant.
The pump speed of 150 gpm is, and will remain constant. Valving simply reduces flow area A, which is balanced out by increased velocity V of water through the pipe.
This does not affect the pump speed Q (flow rate) and hence it remains the same.
Answer:
A. Identify the need, recognize limitations of current toothpaste containers, and then brainstorm ideas on how to improve the existing
Explanation:
To design an improved toothpaste container, we must identify the needs of the customer, one of the major need is to make the container attractive to the sight. This is the first thing that will prompt a customer to wanting to buy the product (The reflectance/appearance).
Then recognize the limitation of the current design, what needed change. This will help in determining what is needed to be included and what should be removed based on identified customers need.
The last step is to brainstorm ideas on how to improve the existing designs. Get ideas from other colleagues because there is a saying that two heads are better than one. This will help in coming to a reasonable conclusion on the new design after taking careful consideration of people's opinion.
Answer: a) The technology that deals with the generation, control and transmission of power using pressurized fluids
Explanation: Fluid power is defined as the fluids which are under pressure and then are used for generation,control and transmit the power. Fluid power systems produces high forces as well as power in small amount . These systems usually tend to have better life if maintained properly. The force that are applied on this system can be monitored by gauges as well as meter.
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).