Answer:
YES
Explanation:
Entropy is an extensive property of the system entropy change that value of entropy change can be determined for any process between the states whether reversible or not. i have attached the formula to calculate entropy change which is independent of whether the system is reversible or not and can be determined for any process.
Explanation:
Conservation of velocity equation
Explanation:
Note: Refer the diagram below
Obtaining data from property tables
State 1:

State 2:

State 3:

State 4:
Throttling process 
(a)
Magnitude of compressor power input


(b)
Refrigerator capacity



(c)
Cop:


Answer:
(a) 561.12 W/ m² (b) 196.39 MW
Explanation:
Solution
(a) Determine the energy and power of the wave per unit area
The energy per unit are of the wave is defined as:
E = 1 /16ρgH²
= 1/16 * 1025 kg/ m3* 9.81 m/s² * (2.5 m )²
=3927. 83 J/m²
Thus,
The power of the wave per unit area is,
P = E/ t
= 3927. 83 J/m² / 7 s = 561.12 W/ m²
(b) The average and work power output of a wave power plant
W = E * л * A
= 3927. 83 J/m² * 0.35 * 1 *10^6 m²
= 1374.74 MJ
Then,
The power produced by the wave for one km²
P = P * л * A
= 5612.12 W/m² * 0.35 * 1* 10^6 m²
=196.39 MW
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number