Answer:
Final mass of Argon= 2.46 kg
Explanation:
Initial mass of Argon gas ( M1 ) = 4 kg
P1 = 450 kPa
T1 = 30°C = 303 K
P2 = 200 kPa
k ( specific heat ratio of Argon ) = 1.667
assuming a reversible adiabatic process
<u>Calculate the value of the M2 </u>
Applying ideal gas equation ( PV = mRT )
P₁V / P₂V = m₁ RT₁ / m₂ RT₂
hence : m2 = P₂T₁ / P₁T₂ * m₁
= (200 * 303 ) / (450 * 219 ) * 4
= 2.46 kg
<em>Note: Calculation for T2 is attached below</em>
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:
The new length of the rod is 182 cm.
Explanation:
Given that a rod that was originally 100-cm-long experiences a strain of 82%, to determine what is the new length of the rod, the following calculation must be performed:
100 x 1.82 = X
182 = X
Therefore, the new length of the rod is 182 cm.