Answer:
Complete Python code with explanation and output results is given below
Explanation:
A function named mymin is created which takes two arguments as input str_1 and str_2. Then using if else conditions compare them and return the smallest of them alphabetically.
To test the code, we called the function mymin three times with different inputs and each time the function mymin returned the correct values.
Python Code:
Function mymin:
def mymin(str_1,str_2):
if str_1<str_2:
return print("Smallest is:",str_1)
else:
return print("Smallest is:",str_2)
Test code:
mymin("Alpha","Beta")
mymin("Z","S")
mymin("Monday","Wednesday")
Output:
Smallest is: Alpha
Smallest is: S
Smallest is: Monday
(Alphabetically Alpha comes first than Beta)
(Alphabetically S comes first than Z)
(Alphabetically Monday comes first than Wednesday)
Answer:
The business plan should include an assessment of each of the following factors except customers rejecting loyalty programs or attempts to build loyalty.
Explanation:
CRM means customer relation management and its purpose is to manage and increase customer by using better strategies moreover to interact with customers to solve and response their problems. In any business plan customer relation manager consider all factors like product must easily accessible, its reputation in market , its advertisement cost and its ease of use and reporting system except the customer rejection loyalty program.
As per the given statement why might someone believe that religion is necessary in order for people to be motivated to behave morally and challenges does such a view face:
Individuals value religion, and this inspires them to act decently because religion has helped and guided many people. The relationship between God and people that gives rise to a set of doctrines and customs: credo, cult, and code. The ultimate code of conduct, or how religion manifests itself, is via worship and service to God, and by extension, to all other people and all of creation.
The challenges does such a view face is although they cannot practice religion, even monkeys can have morality. And regardless of their religious or atheistic beliefs, some people can have no values at all.
To know more about religion
brainly.com/question/28144379
#SPJ4