Answer:
a)
, b) 
Explanation:
a) The coefficient of performance of a reversible refrigeration cycle is:

Temperatures must be written on absolute scales (Kelvin for SI units, Rankine for Imperial units)


b) The respective coefficient of performance is determined:



But:

The temperature at hot reservoir is found with some algebraic help:





Answer:
Procurement Process
Explanation:
Procurement Process describes the series of activities that an organization partakes in to get products or services in order to achieve their goals. The choice of the procurement process is very important for the success of a construction project.
So during a bidding process, the procurement process is section where the organization will need to get water and other utilities, sanitation equipment or storage needed for the success of a construction project.
Answer:
The second classmate is right.
Explanation:
The height of first summit provides the potential energy it will use to climb the following ones.
Ep = m * g * h
Where
m: mass
g: acceleration of gravity
h: height
When the train goes downwards the potential energy is converted into kinetic energy (manifested as speed) and when it climbs it consumes its kinetical energy. As long as no summit is taller than the first the train should have enough energy to climb them.
Also it must be noted that friction also consumes energy, and if the track is too lomg all the energy might be consumed by it.
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