You don't get stumped on a issue or provlem. you a creative to find a solution and a way around it.
Answer:
Explanation:
Social media is making it easier to make a lot of noise about a pressing issue in society, such as human rights violations.
I use social media because I want to keep tabs on people I know.
A change in social media is that people have become increasingly overreliant on it. We tend to spend increasing amounts of time on social media.
Social media should be INFORMATIVE about presidential elections, and it should not be used to spread baseless information. This way, people are more informed about the facts of the candidates and their platforms.
Social media has paved the way for me to make new relationships to important people in my life.
Social media does pose a threat to family and leisure time when said family members tend to be overreliant on the phones and ignore those around them.
The person who is addicted to social media is myself because I spend several hours on it everyday— and that much interaction is too much because it should be one hour a day at most.
I have experienced cyberbullying; the solution to this problem is accountability and finding those who instigate it to bring them to justice.
Answer:
The function is as follows:
import math
def func(x,y,z):
print(math.pow(x, z))
print(math.pow(x,math.pow(y, z)))
print(math.fabs(y))
print(math.sqrt(math.pow(x*y,z)))
Explanation:
This imports the math library
import math
This defines the function
def func(x,y,z):
Print the stated outputs as it is in the question
<em> print(math.pow(x, z)) ---> x to power x</em>
<em> print(math.pow(x,math.pow(y, z))) ---- x to power of y of z</em>
<em> print(math.fabs(y)) ---- absolute of y</em>
<em> print(math.sqrt(math.pow(x*y,z))) --- square root of xy power x</em>
<em />
Answer:
Pseudocode:
import random
fetch user input on a lucky number
insert input into variable - "response"
new variable, random = randint
condition to check wheather random is our response
display results
Python Code:
import random
def main():
response = int(input("Guess my lucky number, its between 1 and 100: "))
lucky_number = random.randint(1,100)
if response == lucky_number:
print(f"Wow you're right, it is {lucky_number}")
else:
print("Sorry, Try Again")
main()
Reminder:
intended for python3 as i included the format f
also it could be done without the import, just manually insert a number
i'll leave the post mortum to you
Explanation:
<span>Word can pull data from a variety of data sources to perform a mail merge. As part of the Microsoft Office suite, Word easily accepts data from Outlook, Excel, and Access, and other data sources such as web pages, OpenDocument text files, and delimited data files stored as plain text. And if you don't have an existing data source, you can create a new one in Word.
ALL OF THE ABOVE
</span>