Answer:
Using python
num_boys = int(input("Enter number of boys :"))
num_girls = int(input("Enter number of girls :"))
budget = int(input("Enter the number of dollars spent per school year :"))
try:
dollarperstudent = budget/(num_boys+num_girls)
print("Dollar spent per student : "+str(dollarperstudent))#final result
except ZeroDivisionError:
print("unavailable")
Answer:
used for ordinary combustibles, such as wood, paper, some plastics, and textiles. This class of fire requires the heat-absorbing effects of water or the coating effects of certain dry chemicals.
Explanation:
Answer:
the three part are mass, spring, damping
Explanation:
vibrating system consist of three elementary system namely
1) Mass - it is a rigid body due to which system experience vibration and kinetic energy due to vibration is directly proportional to velocity of the body.
2) Spring - the part that has elasticity and help to hold mass
3) Damping - this part considered to have zero mass and zero elasticity.
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:
It would take approximately 305 s to go to 99% completion
Explanation:
Given that:
y = 50% = 0.5
n = 1.7
t = 100 s
We need to first find the parameter k from the equation below.

taking the natural logarithm of both sides:

Substituting values:

Also
![t^n=-\frac{ln(1-y)}{k}\\t=\sqrt[n]{-\frac{ln(1-y)}{k}}](https://tex.z-dn.net/?f=t%5En%3D-%5Cfrac%7Bln%281-y%29%7D%7Bk%7D%5C%5Ct%3D%5Csqrt%5Bn%5D%7B-%5Cfrac%7Bln%281-y%29%7D%7Bk%7D%7D)
Substituting values and y = 99% = 0.99
![t=\sqrt[n]{-\frac{ln(1-y)}{k}}=\sqrt[1.7]{-\frac{ln(1-0.99)}{2.76*10^{-4}}}=304.6s](https://tex.z-dn.net/?f=t%3D%5Csqrt%5Bn%5D%7B-%5Cfrac%7Bln%281-y%29%7D%7Bk%7D%7D%3D%5Csqrt%5B1.7%5D%7B-%5Cfrac%7Bln%281-0.99%29%7D%7B2.76%2A10%5E%7B-4%7D%7D%7D%3D304.6s)
∴ t ≅ 305 s
It would take approximately 305 s to go to 99% completion