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
Answer:
a)
b)
Explanation:
Given that:
diameter d = 12 in
thickness t = 0.25 in
the radius = d/2 = 12 / 2 = 6 in
r/t = 6/0.25 = 24
24 > 10
Using the thin wall cylinder formula;
The valve A is opened and the flowing water has a pressure P of 200 psi.
So;
b)The valve A is closed and the water pressure P is 250 psi.
where P = 250 psi
The free flow body diagram showing the state of stress on a volume element located on the wall at point B is attached in the diagram below
Answer:
Yes
Explanation:
The core of an electromagnet serves to stabilize the magnetic field created by the wire. The thicker the core, the more metal there is to amplify the current. Therefore, a thicker core does make an electromagnet stronger. Hope this helps!
The correct answer is A. Earning a bachelor's degree in Civil Engineering from a four-year university, completing an internship, and seeking a job at a private firm.
Explanation:
In the U.S. and many countries, the best to start a career is to enroll in a formal educational program at a university or college. This helps students learn concepts, theories, methods, etc. they need for their profession. Moreover, a degree such as a bachelor's degree is required by employers. In this context, the first step for Connor is to earn a bachelor's degree in Civil Engineering.
Besides this, an internship is recommended after earning a degree because this is the way students can gain real-life work experience, which is considered positive by employers. This means the next step should be an internship.
Finally, Connor can seek a job to design bridges and other buildings because after the degree and internship he will have the experience and knowledge required by employers and by the job.