I believe that the answer is D hope this helped
Answer: Its not appropriate to call the same day, probably the next day you can call, if they don't respond because that person could have been working the whole day and have not got a chance to read or see your email.
Explanation:
A pedestrian always has the right of way when crossing a street in a crosswalk
Answer:
def prediction(sales):
print(0.62 * sales)
prediction(4600000)
Explanation:
Code written in python :
We could write it out has a function :
The code is written has a function ;
'def' starts the function which is named prediction. The function takes in a single argument which is the amount of sales made. Since the percentage of sales generated is a constant pegged at 62%. The expression print( 0.62 * sales) outputs the amount generated by east coast. The function call; prediction(4600000) prints the amount generated if a sales of $4600000 is made.