Answer:
Microsoft is the correct answer
Answer:
a. 2.08, b. 1110 kJ/min
Explanation:
The power consumption and the cooling rate of an air conditioner are given. The COP or Coefficient of Performance and the rate of heat rejection are to be determined. <u>Assume that the air conditioner operates steadily.</u>
a. The coefficient of performance of the air conditioner (refrigerator) is determined from its definition, which is
COP(r) = Q(L)/W(net in), where Q(L) is the rate of heat removed and W(net in) is the work done to remove said heat
COP(r) = (750 kJ/min/6 kW) x (1 kW/60kJ/min) = 2.08
The COP of this air conditioner is 2.08.
b. The rate of heat discharged to the outside air is determined from the energy balance.
Q(H) = Q(L) + W(net in)
Q(H) = 750 kJ/min + 6 x 60 kJ/min = 1110 kJ/min
The rate of heat transfer to the outside air is 1110 kJ for every minute.
The effect would be the altitude of the air, the higher you go up the closer you are to space we’re there’s no oxygen and everything moves slow so when your trying to fly across the world it could feel like your moving slower
Answer:
Efficient when the marginal benefits of project = marginal costs of project.
Explanation:
Majority Decision Rule:
Majority decision rule is based on the notion of equality. An alternative is selected which has majority of votes. The simple majority decision rule may generate efficient results if the marginal benefits of a project are equal or greater than the marginal costs of the project.
Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program