Assumptions:
- Steady state.
- Air as working fluid.
- Ideal gas.
- Reversible process.
- Ideal Otto Cycle.
Explanation:
Otto cycle is a thermodynamic cycle widely used in automobile engines, in which an amount of gas (air) experiences changes of pressure, temperature, volume, addition of heat, and removal of heat. The cycle is composed by (following the P-V diagram):
- Intake <em>0-1</em>: the mass of working fluid is drawn into the piston at a constant pressure.
- Adiabatic compression <em>1-2</em>: the mass of working fluid is compressed isentropically from State 1 to State 2 through compression ratio (r).

- Ignition 2-3: the volume remains constant while heat is added to the mass of gas.
- Expansion 3-4: the working fluid does work on the piston due to the high pressure within it, thus the working fluid reaches the maximum volume through the compression ratio.

- Heat Rejection 4-1: heat is removed from the working fluid as the pressure drops instantaneously.
- Exhaust 1-0: the working fluid is vented to the atmosphere.
If the system produces enough work, the automobile and its occupants will propel. On the other hand, the efficiency of the Otto Cycle is defined as follows:

where:

Ideal air is the working fluid, as stated before, for which its specific heat ratio can be considered constant.

Answer:
See image attached.
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:
Assumption:
1. The kinetic and potential energy changes are negligible
2. The cylinder is well insulated and thus heat transfer is negligible.
3. The thermal energy stored in the cylinder itself is negligible.
4. The process is stated to be reversible
Analysis:
a. This is reversible adiabatic(i.e isentropic) process and thus 
From the refrigerant table A11-A13

sat vapor
m=

b.) We take the content of the cylinder as the sysytem.
This is a closed system since no mass leaves or enters.
Hence, the energy balance for adiabatic closed system can be expressed as:
ΔE
ΔU
)
workdone during the isentropic process
=5.8491(246.82-219.9)
=5.8491(26.91)
=157.3993
=157.4kJ
Answer:
1. True
2. False
Explanation:
given data
EAX contains = ff ff ff 51
doubleword referenced = ff ff ff f1
conditional jump add = eax
solution
1st statement is true
but 2nd statement is false
as here
- js or jne instruction is the conditional jump that is follow a test
- It jump to the specified location when previous instructions are set the SF (Sign Flag) .