Answer:
Gravitational; strongest; facing; closer; near side; toward.
Explanation:
The gravitational attraction between the Earth and the moon is strongest on the side of the Earth that happens to be facing the moon, simply because it is closer. This attraction causes the water on this “near side” of Earth to be pulled toward the moon. These forces of attraction and inertia tends to keep the water in place and consequently, leads to a bulge of water on the near side with respect to the moon.
Also, you should note that what is responsible for the moon being in orbit around the Earth is the gravitational force of attraction between the two planetary bodies (Earth and Moon).
Answer:
s= 20.4 m
Explanation:
First lets write down equations for each ball:
s=so+vo*t+1/2a_c*t^2
for ball A:
s_a=30+5*t+1/2*9.81*t^2
for ball B:
s_b=20*t-1/2*9.81*t^2
to find time deeded to pass we just put that
s_a = s_b
30+5*t-4.91*t^2=20*t-4.9*t^2
t=2 s
now we just have to put that time in any of those equations an get distance from the ground:
s = 30 + 5*2 -1/2*9.81 *2^2
s= 20.4 m
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation:
Answer:
a) 42.08 ft/sec
b) 3366.33 ft³/sec
c) 0.235
d) 18.225 ft
e) 3.80 ft
Explanation:
Given:
b = 80ft
y1 = 1 ft
y2 = 10ft
a) Let's take the formula:

1 + 8f² = (20+1)²
= 8f² = 440
f² = 55
f = 7.416
For velocity of the faster moving flow, we have :
V1 = 42.08 ft/sec
b) the flow rate will be calculated as
Q = VA
VA = V1 * b *y1
= 42.08 * 80 * 1
= 3366.66 ft³/sec
c) The Froude number of the sub-critical flow.
V2.A2 = 3366.66
Where A2 = 80ft * 10ft
Solving for V2, we have:
= 4.208 ft/sec
Froude number, F2 =
F2 = 0.235
d)
= 18.225ft
e) for critical depth, we use :
= 3.80 ft