Answer:
(a) water height =408.66 in.
(b) mercury height=30.04 in.
Explanation:
Given: P=14.769 psi ( 1 psi= 6894.76
)
we know that 
where 
h=height.
Given that P=14.769 psi ⇒P= 101828.6 7
(a)

⇒101828.67=
=10.38 m
So water barometer will read 408.66 in. (1 m=39.37 in)
(b) 
=13600
So 101828.67=
=0.763 m
So mercury barometer will read 30.04 in.
The number of receptacles that are needed for all of these kitchen areas are: C. Four.
<h3>What are
receptacles?</h3>
Receptacles can be defined as types of sockets or series of outlets (openings) that provides a path where current can be taken in a wiring system, so as to run electrical appliances in buildings.
Based on the information provided, the number of receptacles that are needed for all of these kitchen areas are four because one would be used in each area.
Read more on receptacles here: brainly.com/question/23839796
#SPJ1
Answer:
(b) 56%
Explanation:
the maximum thermal efficiency is possible only when power cycle is reversible in nature and when power cycle is reversible in nature the thermal efficiency depends on the temperature
here we have given T₁ (Higher temperature)= 600+273=873
lower temperature T₂=110+273=383
Efficiency of power cycle is given by =1-
=1-
=1-0.43871
=.56
=56%
Answer & Explanation:
function Temprature
NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];
DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];
%AVERAGE CALCULATION AND ROUND TO NEAREST INT
avgNYC=round(mean(NYC));
avgDEN=round(mean(DEN));
fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);
fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);
%part B
count=1;
NNYC=0;
NDEN=0;
while count<=length(NYC)
if NYC(count)>avgNYC
NNYC=NNYC+1;
end
if DEN(count)>avgDEN
NDEN=NDEN+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);
fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);
%part C
count=1;
highDen=0;
while count<=length(NYC)
if NYC(count)>DEN(count)
highDen=highDen+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);
end
%output
check the attachment for additional Information