Answer:empathy
Explanation: Empathy is define as a feeling (be it remorse or others) with a person puting his or herself in another person's position or shoe as if you were them, and having those feelings or feeling what those people felt. Its simply is the capability to emotionally feel or understand another person who is experiencing a breakdown, pain, joy e. t. c.
There are cognitive, emotional and compassionate empathy. At times if not most times, if we do see others suffering especially the less privileged and homeless people, we instantly or sometimes be moved and immediately see ourselves in their shoes thinking what it would have been like if it was us and feel remorseful or have sympathy for what the people or person is going through at that moment and more.
<span>Both industries need to become more customer-focused. Though their focus on profits is understandable, the decline in profits will continue if consumers see that the product they are receiving is lackluster. People drive or take buses or trains more often than they fly because flying has become so inconvenient and expensive. People hold on to cars well past their expiration dates because cars are so expensive and car salesmen are too pushy.</span>
Answer: Non Marxist
Explanation:
Non Marxist people are those who do not follow the ideology of Marxist.They tend to believe that conflicts are not caused due to inequality rather due to completing values .Thus, if people will understand the values of others as well then conflicts can be reduced.
Non-Marxist try to follow the pattern of acknowledging others views and interest so that settlement can be made in any situation.This will provide a win-win outcome for all the involved parties and dispute will not occur.
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)