A. I believe, lmk if I’m right
Answer:
Most hydraulic systems develops pressure surges that may surpass settings valve. by exposing the hose surge to pressure above the maximum operating pressure will shorten the hose life.
Explanation:
Solution
Almost all hydraulic systems creates pressure surges that may exceed relief valve settings. exposing the hose surge to pressure above the maximum operating pressure shortens the hose life.
In systems where pressure peaks are severe, select or pick a hose with higher maximum operating pressure or choose a spiral reinforced hose specifically designed for severe pulsing applications.
Generally, hoses are designed or created to accommodate pressure surges and have operating pressures that is equal to 25% of the hose minimum pressure burst.
Gases, liquids and solids are all made up of atoms, molecules, and/or ions, but the behaviors of these particles differ in the three phases. ... gas are well separated with no regular arrangement. liquid are close together with no regular arrangement. solid are tightly packed, usually in a regular pattern.
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).