An appropriate use of social media includes: C. having thought-provoking debates.
<h3>What is
social media?</h3>
Social media refers to a collection of Internet software applications which are designed and developed so as to avail end users an ability to add, share and discuss different information, as well as enhance collaboration and debates between community members over the Internet.
In this context, we can logically deduce that having thought-provoking debates and making constructive posts are appropriate use of social media.
Read more on social media here: brainly.com/question/25546524
#SPJ1
Answer:
Hippocampus.
Explanation:
There are two parts of the limbic system. They are the frontal part which is the amygdala and the posterior part which is the hippocampus.
The hippocampus is an extension of the temporal part of the cerebral cortex which is a plastic-like structure that can be easily damaged by stimuli. It is packed with densed neurons and forms an S-shape at the extension of the temporal part.
It is responsible for learning and memory and damage to it can result to memory loss of recently learnt information.
Answer:
I have Lamborghini Centenario as my profile pic. :)
Explanation:
Answer:
Management is not that easy. And at each level of the work environment, we need it. Suppose Mary works under an editor, and as a writer. Then She will be provided by editor a certain set of rights, that she requires to accomplish her work. And the chief editor who heads the editor, and who might be the administrator has nothing to do with this. And thus this will ensure that the chief editor or the administrator can accomplish other works during this time. And this will certainly save time, of the whole team. And its a rule in management, that only those rights are provided, that are required by the worker, and like in case of Mary.
Explanation:
Please check the answer section.
Answer:
This is python, I don't know what type of programming language you are learning.
import random
# Enter your code here
dice1 = random.randint(1,6)
dice2 = random.randint(1,6)
total = 0
while True:
if dice1 == 1 and dice2 == 1:
total += 1
print("Rolled: " + str(dice1) + " " + str(dice2))
break
else:
total += 1
print("Rolled: " + str(dice1) + " " + str(dice2))
dice1 = random.randint(1,6)
dice2 = random.randint(1,6)
print("It took you "+ str(total) + " rolls to get snake eyes.")
Explanation: