Answer: P = 0.416 kW
Explanation:
taken a step by step process to solving this problem.
we have that from the question;
the amount of heat rejected Qn = 4800 kJ/h
the cooling effect is Ql = 3300 kJ/h
Applying the first law of thermodynamics for this system gives us
Шnet = Qn -Ql
Шnet = 4800 - 3300 = 1500 kJ/h
Next we would calculate the coefficient of performance of the refrigerator;
COPr = Desired Effect / work output = Ql / Шnet = 3300/1500 = 2.2
COPr = 2.2
The Power as required gives;
P = Qn - Ql = 4800 - 3300 = 1500 kJ/h = 0.416
P = 0.416 kW
cheers i hope this helps!!!!1
Answer:
design hour volumes will be 4000 to 6000
Explanation:
given data
AADT = 150000 veh/day
solution
we get here design hour volumes that is express as
design hour volumes = AADT × k × D ..............1
here k is factor and its range is 8 to 12 % for urban
and D is directional distribution i.e traffic equal divided by the direction
so here design hour volumes will be 4000 to 6000
Answer:
50421.6 m³
Explanation:
The river has an average rate of water flow of 59.6 m³/s.
Tributary B accounts for 47% of the rate of water flow. Therefore the rate of water flow through tributary B is:
Flow rate of water through tributary B = 47% of 59.6 m³/s = 0.47 * 59.6 m³/s = 28.012 m³/s
The volume of water that has been discharged through tributary B = Flow rate of water through tributary B * time taken
time = 30 minutes = 30 minutes * 60 seconds / minute = 1800 seconds
The volume of water that has been discharged through tributary B in 30 seconds = 28.012 m³/s * 1800 seconds = 50421.6 m³
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
Answer:
Vertical; horizontal.
Explanation:
The Virginia Department of Motor Vehicles started issuing sets of newly designed driver's licenses to drivers in 2009. Although, the cards that were issued to drivers prior to the introduction of the new cards remained valid until they were expired.
There are two categories (shapes) for the Virginia driver's license. The vertical shape license represents the driver who is under the age of 21, and the horizontal shaped license represents the driver who is over the age of 21.
Additionally, the Virginia's driver license (vertical in shape) issued to drivers who are under the age of 21 has a background image of a dogwood flower while the horizontal shaped license issued to drivers who are over the age of 21 has a background image of the state capitol.