Answer:
Pitching
Explanation:
According to my research on the different marketing stunts that organizations have done, I can say that based on the information provided within the question this type of Public Relations move is called Pitching. Like mentioned in the question they basically make a controversial statement in front of platforms with huge audiences in order to rile people up so they go visit their site or are aware of their project, which in term leads to sales.
I hope this answered your question. If you have any more questions feel free to ask away at Brainly.
Bro no one is going to help you write a two page report do it yourself are you that lazy?
Answer:
Explanation:
The following code is written in python and divides the amount of cents enterred in as an input into the correct amount of quarters, dimes, nickels and pennies. Finally, printing out all the values.
import math
#First we need to define the value of each coin
penny = 1
nickel = 5
dime = 10
quarter = 25
#Here we define the variables to hold the max number of each coin
quarters = 0
dimes = 0
nickels = 0
pennys = 0
cents = int(input("Please enter an amount of money you have in cents: "))
if cents > 0 and cents <= 100:
if cents >= 25:
quarters = cents / quarter
cents = cents % quarter
if cents >= 10:
dimes = cents/dime
cents = cents % dime
if cents >= 5:
nickels = cents /nickel
cents = cents % nickel
if cents > 0:
pennys = cents / penny
cents = 0
print("The coins are: "
"\nQuarters", math.floor(quarters),
"\nDimes", math.floor(dimes), "\nNickels", math.floor(nickels), "\nPennies", math.floor(pennys))
else:
print("wrong value")