Answer:
There should be a colon at the end of the if statement, ie:
<h2>
if x > 100:</h2><h2>
print("...")</h2>
The Explanation of how each core function works together to help us carry out the marketing concept is given below.
<h3>How do marketing functions work together?</h3>
The marketing function is known to be used in regards to selling and it is one that helps businesses to achieve a lot.
The six marketing functions are:
- Product/service management,
- Marketing-information management,
- Pricing,
- Distribution,
- Promotion,
- selling.
The functions are known to often work together to be able to obtain products from producers down to the consumers.
Hence, each of the marketing functions is known to be one that need to be done on its own, but they are said to be very effective, if the said functions work together as a team.
Learn more about marketing functions from
brainly.com/question/26803047
#SPJ1
Technology helps business professionals, keep more organized, communicate better, and effectively keeps businesses secure. Technology helps keep employee information and business paper<span> work more organized using</span>computers<span> and </span>software<span>; while making it easier to communicate with employee's using e-mail and memo's. With better alarm systems, camera's and online banking, security measures are endless. </span>
Answer:
Explanation:
The Python program has been adjusted. Now the pizza ordering function is called from the main() method and not as soon as the file is imported. Also, the random package has been imported so that the random.randint(1,10) can correctly create the 5 random numbers needed. The code has been tested and the output can be seen in the attached image below, correctly matching the desired output.
import random
def pizza(meat="cheese", veggies="onions"):
print("You would like a", meat, "pizza with", veggies)
def main():
# Get the User Input
my_meat = input("What meat would you like? ")
my_veggies = input("What veggie would you like? ")
# Call the Function
pizza(meat=my_meat, veggies=my_veggies)
print("Your random numbers are:")
for i in range(5):
print(random.randint(1, 10))
# Call main function
main()