Just multiply all them together for volume, 468 ft ^3
Answer:

Step-by-step explanation:
S = second; F = flying time.
Since it can flap its wings 30 times, each second, we have already found our answer. The relationship between flying time (Wing flaps) and seconds is 30. In other words, it beats it's wings 30 times each second. Which is what the question asks.
Now we just have to write the equation:

This is because the seconds are <u>dependent</u> on the flap of wings, so s would be the y value.
Hope it Helps!
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: