Answer:
D the closest
Explanation:
i looked it up and 8t says 200
Answer:

Explanation:
Soil bearing pressure=
Since we're given pressure of 2500 psf and load of 45000 pounds
The area=
Therefore, the smallest area of safe footings should not be less than 
Answer:
Given that the temperature of the window is below the dew point it will condensate.
Explanation:
A psychrometric chart (like the one attached) will give you the information needed. This chart is for 14.696 psia.
On the bottom horizontal axes you have the dry-bulb temperature, in this case 70°F, going up from this point you can reach the 50% relative humidity curve (red point on chart), going horizontally from this point to the 100% relative humidity you get the dew point temperature (the point at which moisture will condensate) (blue point on chart). In this case the dew point is 50°C. Given that the temperature of the window is below the dew point it will condensate.
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