Answer:
Nationalism is a worldview that takes its starting point in the community within the borders of nations. Nationalism pays homage to the nation, culture, history and safeguards the nation state and its interests. Anyone who professes nationalism is called a nationalist.
Thus, the conception of nation also implies for nationalists the existence of a people, that is, a society with common cultural and ethnic characteristics that differentiate it from other nations, and give individuals a sense of belonging to that nation. In this way, nationalism can promote in certain cases clashes between that ethnic and cultural identity and the cultural expressions or minority ethnic identities found in a given society or nation.
Answer:
C. People of different races could be restricted to separate areas in public places.
Explanation:
The 1857 Supreme Court case of Plessy vs. Ferguson held that separate but equal facilities are constitutional. This means that racial segregation is legally constitutional as long as it has equal facilities for both races.
This case was a result of an incident when Homer Adolph Plessy, a mixed-race man was traveling in a train bound for Louisiana. He sat at the whites-only section of the train for which he was asked to move to the blacks section which he refused. Convicted of breaking the law, Plessy filed a petition against Hon. John H. Ferguson, the judge who presided over the case. The court ruled in favor of the state with the conclusion that since the train had equal facilities for both races and convicted Plessy.
Thus, the correct answer is option C.
Answer:
The user is prompted for input
# the input is assigned to user_tweet
user_tweet = str(input("Enter your tweet here:"))
# if statement to check if LOL is in the user_tweet
if('LOL' in user_tweet):
# If there is LOL in the user_tweet, it display
# LOL means laughing out lous
print("LOL means laughing out loud.")
# if there is no LOL in the user_tweet
# it display "There is no LOL in the tweet
else:
print("There is no LOL in the tweet")
Explanation:
The code is well commented and written in Python.
It prompts the user for tweet, then check if the tweet contains LOL, it there is LOL it displays "LOL means Laughing out loud" else it display "There is no LOL in the tweet".
Explanation: