100: D, third law of motion
101: D, second law of motion
Answer:
BOD concentration at the outflow = 17.83 mg/L
Explanation:
given data
flow rate of Q = 4,000 m³/day
BOD1 concentration of Cin = 25 mg/L
volume of the pond = 20,000 m³
first-order rate constant equal = 0.25/day
to find out
What is the BOD concentration at the outflow of the pond
solution
first we find the detention time that is
detention time t = 
detention time t = 
detention time = 5 days
so
BOD concentration at the outflow of pond is express as
BOD concentration at the outflow = 
here k is first-order rate constant and t is detention time and Cin is BOD1 concentration
so
BOD concentration at the outflow = 
BOD concentration at the outflow = 17.83 mg/L
Answer:
Two Python codes are explained for the problem. Modify as appropriate
Explanation:
<u>CODE 1:</u>
def string_contains(input_string): # called function
if(input_string.__contains__('z')): # Check input_string contains 'z'
print('has the letter z.') # print input_string contains 'z'
else:
print('not worthwhile.') # print if input_string not contains 'z'
input_string = input('Please enter the string: ') # ACeept string from user
string_contains(input_string) # calling function where we pass input_string as actual parameter
<u>CODE 2:</u>
def string_contains(input_string):
for x in input_string:
if x=='z':
return 'has the letter z'
return 'not worthwhile'
Answer:
40.7 m
Explanation:
Let point 1 represent the surface of the water, point 2 be the top of the water trajectory and the reference be the bottom of the tank. Hence:

Answer:
Explain any five applications of computer modeling in beams.
Explanation: