Answer:
W=2 MW
Explanation:
Given that
COP= 2.5
Heat extracted from 85°C
Qa= 5 MW
Lets heat supplied at 150°C = Qr
The power input to heat pump = W
From first law of thermodynamics
Qr= Qa+ W
We know that COP of heat pump given as



W=2 MW
For Carnot heat pump


2.5 T₂ - 895= T₂
T₂=596.66 K
T₂=323.6 °C
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}
Answer:
if ur mad you may drive faster if ur sad u may drive slower due to the amount of adrenaline and dopamine levels in your body in that given moment
Explanation:
Answer:
System integration can be defined as the progressive linking and testing of system components to merge their functional and technical characteristics into a comprehensive interoperable system.
Explanation:
....
Answer: (a) +/- 7.5° (b) +/- 3.75°
Explanation:
See attachment