Answer:
C. the object is moving forward
Explanation:
A positive slope means position is increasing when time is increasing. Generally, increasing position is "moving forward."
Answer:
BDEG
Explanation:
got it right on the test on edge because i used my b r a i n
Answer:
yes, the recordings sound is same
Explanation:
given data
recording done = 2 performances
1st show = sold out
2nd show = lightly attended
to find out
recordings sound the same and why
solution
as per given in
- 1st show is sold out it mean in this case concert hall is full so that recording sound should be high here
- 2nd case only few people are attended and struggle for ticket and orchestra
it mean it sound performance so in both case recording sound will be same
because we do not other all are sitting at front row or they sit as they want
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:
The British Standards Institution, is the national standards body of the United Kingdom. BSI produces technical standards on a wide range of products and services and also supplies certification and standards-related services to businesses