Discrimination includes acting against a race whereas harassment isn’t not allowing a race to do something but instead insulting them. For example not giving someone of a certain race a job is discrimination but if someone followed a person of another race down the street calling them rude names, that’s harassment
Answer:
Written in Python:
def licenseNum(licenseYear, customID):
output = 100000 * customID + licenseYear
print("Dog license: "+str(output))
Explanation:
This line defines the function with parameters licenseYear and customID
def licenseNum(licenseYear, customID):
This calculates the output as stated in the question
output = 100000 * customID + licenseYear
This displays the output
print("Dog license: "+str(output))
To call the function, make use of: licenseNum(2014, 777)
Where 2014 and 777 can be replaced with other digits as required
C.) New discoveries make the current model inaccurate. Since
science is all about observation and experimentation, it is logical that
whenever new findings are gathered, scientific models must be modified to adapt
to the information. As new ideas and concepts are uncovered, models should be
updated to make them correct.