Answer:
print('Hello world!')
print('Spam')
print('Eggs')
print('SpamEggs')
print('SpamEggs')
print('Spam Eggs')
print(7)
print(20)
print(13)
print('5k')
print(13)
print('10.8m')
print(2.72)
Explanation:
Integers and floats don't need quotes, but if you want to combine it with a string, then you need a quote. Hope that this solution is what you are looking for!
How is your approach to solving how to order your coins different from how a computer might have to approach it?
Answer: Computer solves the order of coins the way its programmed to while you solve the order of coins the way you want.
Tamara and Clyde got different answers when dividing 2x4 + 7x3 – 18x2 + 11x – 2 by 2x2 – 3x + 1. Analyze their individual work.
Which statement about their answers is true?
Tamara’s work is correct because Clyde did not multiply the terms in the division table correctly.
Clyde’s work is correct because Tamara did not subtract the terms correctly.
Both students are correct.
Both students are incorrect.
Any of the students, Tamara or Clyde, who obtained the same quotient following division as X2+5x+2, can be considered accurate. Tamara did not correctly deduct the terms, hence Clyde's work is accurate.
What is a division problem's remainder?The value remaining after division is known as the Remainder. After division, we are left with a value if a number (dividend) cannot be divided entirely by another number (divisor). The remaining is the name for this amount.
What is an example of the remainder?It may exceed or fall short of the quotient. For instance, the result of 41 divided by 7 is 5 and the remaining is 6. By just plugging in numbers that match the problem, it is simple to answer several remainder difficulties. As an illustration, the leftover is 3 when the positive integer x is divided by 5. The leftover is 4 when the positive integer y is divided by 5.
To know more about Clyde’s work here:
brainly.com/question/14780388
#SPJ1
Write the name of the tab, command group, and icon you need to use to create a bulleted list.
Answer:
Tab: Home Tab
Command Group: Paragraph
Icon: Justify Icon
Explanation:
The name of the tab, command group, and icon need to use to create a bulleted list are; Home Tab, Paragraph Group and Multilevel Icon.
What are the name of the tab, command group, and icon you need to use to create a bulleted list?The Tab on the Ribbon is Home, and the group is Paragraph. And there you will find the Multilevel Icon.
We Just need to select the one from it that suits you.
Also for increasing the indentation to one more level Press Tab
For Outdenting, press, Shift+ tab
For adding an item at any indentation level, go to the last word, and press enter then to opt-out of that indentation level, press enters two times.
Now transfer the insertion point to the last of the last most item in the number list, and then enter (press). and then press Del. or you can hit Enter which can find in the same tab( home) within the Paragraph group, and from there you can put off the number formatting.
Hence The name of the tab, command group, and icon need to use to create a bulleted list are; Home Tab, Paragraph Group and Multilevel Icon.
Learn more about the similar question here;
https://brainly.com/question/14596364
#SPJ2
identify all of the data dependencies in the following code. which dependencies are data hazardsthat will be resolved via forwarding? which dependencies are data hazards that will cause a stall? s1: add $3, $4, $6 s2: sub $5, $3, $2 s3: lw $7, 100($5) s4: add $8, $7, $2
Through line biomechanics concentration and observation magic if International Society of Biomechanics in sports.
What is "International Society of Biomechanics in sports"?The recently developed professional association in biomechanics is the "International Society of Biomechanics in sports".It is the professional association in bio-mechanics.
It is an international society which is dedicated to bio-mechanics to sports. The main purpose of the society is to understand and study the human movement and its relation to sport bio-mechanics. They provide information regarding bio-mechanics in sports.
Therefore, Through line biomechanics concentration and observation magic if International Society of Biomechanics in sports.
Learn more about biomechanics on:
https://brainly.com/question/13898117
#SPJ1
Which one way in which using infrared in game console controllers could affect the experience of a person playing the game?
Please answer asap I need it now
T/F In Mac OS X, Sharing Only accounts can log on to the local Mac computer and access shared files and printers on other computers.
False: In Mac OS X, Sharing Only accounts can log on to the local Mac computer and access shared files and printers on other computers.
The given statement, "In Mac OS X, Sharing Only accounts can log on to the local Mac computer and access shared files and printers on other computers," is a bit tricky, but it is a false statement.
There is no sharing-only user account type in Mac OS X. A sharing-only account is a user account that has been configured to allow other users to access shared resources on the local machine. These accounts cannot be used to log in to the computer and do not have any privileges beyond those required to access shared resources. Only user accounts with login access can log on to the local computer.
For example, an administrator might create a sharing-only account for a user who needs access to a shared printer or folder on the local computer. The user would not be able to log on to the computer, but could access the shared resource using the sharing-only account credentials.
For more such questions on personal computer visit:
brainly.com/question/13626205
#SPJ11
Python - Write a program to print the multiplication table as shown in the image by using for loops.
Answer:
Explanation:
The following python code creates the multiplication table for 10 rows and 10 columns. This code uses nested for loops to traverse the table and print out the product of each multiplication. The image attached shows the output of the code.
for x in range(1, 11):
for y in range(1, 11):
z = x * y
print(z, end="\t")
print()
The program to print the multiplication table as shown in the image by using for loops is in the Source code.
The Python program that uses nested for loops to print the multiplication table:
Source code:
for i in range(1, 11):
for j in range(1, 11):
if i == 1 and j == 1:
print("x", end=" ")
elif i == 1:
print(j, end=" ")
elif j == 1:
print(i, end=" ")
else:
print(i * j, end=" ")
print()
This program will iterate through the values of `i` from 1 to 10 and `j` from 1 to 10. It checks for special cases when `i` or `j` is equal to 1 to print the headers (x and the numbers 1 to 10).
For other cases, it calculates the multiplication of `i` and `j` and prints the result.
Learn more about Nested loop here:
https://brainly.com/question/33832336
#SPJ6
For the given pseudocode, which XXX and YYY will output the number of times that 10 is input (stopping when 0 is input)? Choices are in the form XXX / YYY.
count = 0
val = Get next input
While val is not 0
If val == 10
XXX
Else
YYY
val = Get next input
Put count to output
count = count + 1 / count = 0
count = count + 1 / (nothing)
count = count + val / (nothing)
count = count + val / count = 0
The XXX / YYY = count = count + 1 / count = 0, In the given pseudocode, the variable "count" is initialized to 0. Then, the first input value is taken and stored in the variable val. The program enters into a loop where it checks whether the value of val is not equal to 0.
If it is not, then it checks whether the value of val is equal to 10. If it is, then the program needs to increment the count of the number of times 10 is input. If it is not, then the program needs to skip this step. In the end, the count of the number of times 10 is input needs to be outputted.
Among the given choices, XXX / YYY = count = count + 1 / count = 0 is the correct one.
This is because the program needs to increment the count by 1 every time it encounters the value 10. On the other hand, if the value is not 10, then it needs to do nothing. Finally, the count needs to be outputted, and it should be initialized to 0 before the loop starts.
To know more about pseudocode visit:
https://brainly.com/question/13208346
#SPJ11
3.7 Code Practice
can someone write a code for me
Answer:
Explanation:
raaaaa faraon- yt:
love shady
Match each virtualization component on the left with the appropriate description on the
right. Each type of component may be used once, more than once, or not at all.
-Provides the hardware necessary to create a virtualized environment.
-A thin layer of software that resides between the virtual machine and hardware.
-A software implementation of a computer.
-A file created to store data.
-Allows virtual machines to interact with hardware.Host machine
Hypervisor
Virtual machine
Virtual hard disk
Hypervisor
The table below lists the virtualization components and their corresponding descriptions: Virtualization component, Description Host Machine provides the hardware necessary to create a virtualized environment.
Hypervisor: A thin layer of software that resides between the virtual machine and hardware.
Virtual machine: A software implementation of a computer.
Virtual hard disk: A file created to store data. Allows virtual machines to interact with hardware.
Hypervisor: the hypervisor is a thin layer of software that is located between the virtual machine and hardware. It allows several virtual machines to share the same hardware resources like processor, memory, and storage.
Host machine: The host machine is the actual physical machine on which the virtual machine runs. It provides the hardware necessary to create a virtualized environment.
To learn more about Hypervisor; https://brainly.com/question/9362810
#SPJ11
What parts of the computer does it not need to function?
what information is provided by a convective outlook (ac)?
A convective outlook provides information about the potential for severe weather, including the risk of thunderstorms, tornadoes, and other convective phenomena, over a specific area and time period.
Convective outlooks are issued by meteorological agencies, such as the Storm Prediction Center (SPC) in the United States, to communicate the level of risk and probability of severe weather occurrences. They typically classify the risk into different categories, such as "slight," "enhanced," "moderate," or "high," depending on the severity and coverage of the anticipated convective activity. The convective outlook takes into account various atmospheric conditions, such as instability, wind shear, moisture content, and synoptic-scale weather patterns, to assess the potential for severe thunderstorms and other convective events. This information helps the public, emergency management agencies, and meteorologists to better prepare for and respond to severe weather events.
Learn more about risk of thunderstorms here;
https://brainly.com/question/31834813
#SPJ11
Why would you clear a computer’s cache, cookies, and history?
to ensure that your computer’s settings and security certificates are up to date
to ensure that your computer’s settings and security certificates are up to date
to make sure that nothing is preventing your computer from accessing the internet
to make sure that nothing is preventing your computer from accessing the internet
to prevent intrusive ads from delivering malware to your computer
to prevent intrusive ads from delivering malware to your computer
to ensure that they are not clashing with the web page or slowing your computer down
Answer:
prevents you from using old forms. protects your personal information. helps our applications run better on your computer.
Ayana is looking for a game to play on her smartphone. She wants it to be simple, preferably with only one action. But she also wants it to be a fun, popular game. Which of the following games would be best for Ayana?
A.
Dance Dance Revolution
B.
Sim City
C.
Flappy Bird
D.
Poker
The Game that best suits Ayana is Sim City.
What is Simcity Game all about?
In SimCity BuildIt, the most well-known city-building game for mobile devices, and other SimCity games, you may become the hero of your very own city by planning and building a stunning, thriving metropolis. As your city grows and becomes more complex, you are the one who makes every choice. Make wise decisions to maintain a satisfied populace and expand the skyline. Build your way to something exceptional.
What is Dance Dance Revolution Game?
A common dance simulator game found in many Game Centers is Dance Dance Revolution.
What is a Flappy bird game?
It's just a computer-generated visual sequence that features the Flappy Bird navigating a challenging course from about 910 to 999 and is banned.
The Game that Ayana looking for would match the Simcity Game which is played on a smartphone. It a simple and preferably with one action which is a popular game.
Hence, Simcity is the preferred game.
To learn more about the Game from the given link
https://brainly.com/question/24855677
#SPJ1
URGENT!! Will give brainliest :)
Why might you use this kind of graph?
A. To show the relationship between two variables
B. To compare data from different groups or categories
C. To show the relationship between sets of data
D. To show parts of a whole
Answer: b
Explanation:
To compare data from different groups or categories
hope this helps
Answer:
B. To compare data from different groups or categories
the program is not going into the if loop but directly in the else one and is saying 'wrng answer' even if it is right. where is the problem? (i will give brainliest please HELPPPPPPPP) this is python btw
Answer:
convert the input to an integer:
ans = int(input(str(num1)+"+"+str(num2)+"="))
Explanation:
Your code is comparing an integer to a string, which will always return false. If you cast your input to an integer using the int() function, your problem should be solved.
10. Two technicians are discussing recycling specifications for refrigerant. Technician A says that refrigerant oil with 5,000 parts per million (ppm) does not fall
within specifications. Technician B says that air can only have a maximum of 330 ppm. Who is correct?
O A. Neither Technicians A and B
OB. Technician B
O C. Both Technicians A and B
O D. Technician A
Two technicians are discussing recycling specifications for refrigerant Technician A is correct.
What is the recycling ?Recycling is the process of transforming waste materials into new products to prevent the waste of potentially useful materials and reduce the consumption of fresh raw materials. It is an important part of the global economy and helps to preserve the environment by reducing energy usage, air and water pollution, and reducing the amount of waste sent to landfills. Recycling can be done through mechanical means such as shredding or separation, or through chemical processes such as melting and reforming.
To learn more about recycling
https://brainly.com/question/27248056
#SPJ1
Fill in the Blank
Complete the code.
from random import randint
# Generate and save a random number.
correct = randint(1,10)
# Initialize the variable to count the number of guesses.
attempts = 0
# Create a loop that continues until the user guesses the number.
keepGoing = True
_______________ keepGoing:
# Get a guess from the user and update the number of guesses.
guess = input("Guess an integer from 1 to 10: ")
guess = int(guess)
attempts = attempts + 1
# Compare the guess to the correct answer.
if guess == correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False
else:
if guess < correct:
print("Guess higher.")
else:
print("Guess lower.")
while
Explanation:
I just did this question
Answer: while
Explanation:
from random import randint
# Generate and save a random number.
correct = randint(1,10)
# Initialize the variable to count the number of guesses.
attempts = 0
# Create a loop that continues until the user guesses the number.
keepGoing = True
while keepGoing:
# Get a guess from the user and update the number of guesses.
guess = input("Guess an integer from 1 to 10: ")
guess = int(guess)
attempts = attempts + 1
# Compare the guess to the correct answer.
if guess == correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False
else:
print("You were wrong.")
# Continue the loop until the user is correct.
# Tell the user how many guesses were required.
print("You guessed the number in",attempts,"attempts.")
You modified the program to give the user a hint by changing the "else" part of the if block.
if guess == correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False
else:
if guess < correct:
print("Guess higher.")
else:
print("Guess lower.")
what are pixels that are the exact same between multiple frames called?
Answer:
Temporal Redundancy
Explanation:
In rstudio how do you answer the following question:
Question 1
A. Load the gapminder dataset from the gapminder package and save it as a dataframe object named "gap. "
B. Using dplyr, create a new binary variable called SA that indicates a 1 if a country is in South America,
and a 0 if not. Use colnames() to check if it worked.
C. Using dplyr, create a new dataframe object that only contains the data for the years 2000-2005. Name
the new dataframe ‘recent_gap’
C. Using dplyr, rename the lifeExp variable "life_expectancy" and the variable pop "population" in both
dataframes. Use colnames() to check your work.
D. Using a dplyr function, show the 10 countries with the highest life expectancy in recent_gap. Then do
the same for older_gap. Comment on any differences you notice
A. To load the gapminder dataset and save it as a dataframe object named "gap", you can use the following code:
The Codelibrary(gapminder)
gap <- gapminder
B. To create a new binary variable called SA that indicates a 1 if a country is in South America and a 0 if not, you can use the following code:
library(dplyr)
gap <- gap %>%
mutate(SA = ifelse(continent == "South America", 1, 0))
colnames(gap)
This will add a new variable "SA" to the gap dataframe, with values of 1 for countries in South America and 0 for countries not in South America. The colnames() function can be used to check if the variable was added successfully.
C. To create a new dataframe object that only contains the data for the years 2000-2005, you can use the following code:
recent_gap <- gap %>%
filter(year >= 2000 & year <= 2005)
This will create a new dataframe called "recent_gap" that only contains data for the years 2000-2005.
D. To rename the lifeExp variable "life_expectancy" and the variable pop "population" in both dataframes, you can use the following code:
gap <- gap %>%
rename(life_expectancy = lifeExp, population = pop)
recent_gap <- recent_gap %>%
rename(life_expectancy = lifeExp, population = pop)
colnames(gap)
This will rename the lifeExp and pop variables to life_expectancy and population in both the gap and recent_gap dataframes. The colnames() function can be used to check if the variables were renamed successfully.
D. To show the 10 countries with the highest life expectancy in recent_gap, you can use the following code:
recent_gap %>%
arrange(desc(life_expectancy)) %>%
select(country, life_expectancy) %>%
head(10)
This will arrange the recent_gap dataframe by descending life_expectancy, select the country and life_expectancy variables, and then show the top 10 countries with the highest life expectancy. To do the same for older_gap, you can use the following code:
older_gap <- gap %>%
filter(year < 2000)
older_gap %>%
arrange(desc(life_expectancy)) %>%
select(country, life_expectancy) %>%
head(10)
This will create a new dataframe called "older_gap" that contains data for years before 2000, arrange it by descending life_expectancy, select the country and life_expectancy variables, and then show the top 10 countries with the highest life expectancy.
By comparing the top 10 countries with the highest life expectancy in recent_gap and older_gap, you may notice differences due to changes in healthcare, technology, and other factors over time.
Read more about rstudio here:
https://brainly.com/question/29342132
#SPJ1
ReadWorks.org
Assignments
Johnny's First Job
Answer:
reading and the gathered up to be in a Philippine language pilipino and see what they said it will send it s dark blue in a Philippine area is not what pic and I are going well with your grade now just need help now need help
why do i like art in your own words can anyone help me plesssssssssssssss
Answer:
i like art because it can show feeling and inspire people the creativity that people show. The skill to make art is is outstanding and even those some of the most famous artist are not alive any more there art is still seen by other people today that's why i like art because art can show how a person feels. Here is an example if a person is deaf and cant hear then they don't speak but they can paint what they feel same thing for other people. painting can also help people did you know that painting is proven and effective way to reduce stress and that's why i like art
Explanation:
hope this helped
i like art because Art has allowed us to explore new ideas. It lets us freely express ourselves in many ways. From story telling, to painting, to song.
hope it helped!!
It is forecasted that the project will be finished in 3 Sprints. The Product Owner wants to design acceptance tests for all items. What's the best response from the Scrum Master?
Answer:
Explanation:As a Scrum Master, the best response to the Product Owner's request to design acceptance tests for all items would be to facilitate a discussion with the development team about the best approach to ensure that the items are delivered with high quality.
It's important to keep in mind that Scrum is an agile framework that emphasizes delivering a potentially shippable product increment at the end of each sprint. Therefore, the focus should be on delivering value to the customer rather than exhaustive testing of all items.
In this case, the Scrum Master could suggest that the team focuses on identifying the highest-risk items and designing acceptance tests for those, rather than trying to cover all items. The team could also explore automated testing to increase efficiency and reduce the risk of human error.
Ultimately, the Scrum Master should work with the team to find a balance between ensuring high-quality delivery and meeting the project's timeline and objectives.
Testout Floor 1 Overview Office 1 Ofice Recycle Bin Scenario You are the IT administrator for a small corporate network. Currently, the computer in Office 1 has three hard disks in the computer. A single volume has been defined on each disk, taking up all of the space on that disk. Employees are running out of space on the the E: volume and would like additional space. You've installed a new hard drive in the computer and booted into Windows. In this lab, your task is to extend the E: drive using 300000 MB on Disk 3 using the GPT partition style. o Type here to search Lab Report Your Performance Your Score: 0 of 1 (0%) Elapsed Time: 1 minute 16 seconds Pass Status: Not Passed Required Score: 100% Task Summary Actions you were required to perform: * Extend the Art volume (E:) Show Details Explanation In this lab, your task is to extend the E: drive using 300000 MB on Disk 3 using the GPT partition style. Complete this lab as follows: 1. Right-click Start and select Disk Management. 2. Select GPT as the partition style. 3. Click OK to initialize the new disk. 4. Maximize the window for easier viewing. 5. Right-click Art (E:) and select Extend Volume 6. Click Next. 7. Under Available, select Disk 3. 8. Select Add. 9. In the Select the amount of space in MB, enter 300000 to be added to the existing volume. 10. Click Next. 11. Click Finish 12. Click Yes to extend the volume to non contiguous free space, the disks must be upgraded to dynamic disks. Done
To extend the E drive using 300000 MB on Disk 3 using the GPT partition style, you need to follow these steps, by completing these steps, you will be able to extend the E drive using the space on Disk 3. It is important to select the GPT partition style as it supports disks larger than 2 TB.
First, Right-click Start and select Disk Management, then Select GPT as the partition style, after that Click OK to initialize the new disk, then Maximize the window for easier viewing and Right-click Art E and select Extend Volume, then Click Next and Under Available, select Disk 3, Select Add. In the Select the amount of space in MB, enter 300000 to be added to the existing volume. Click Next. Click Finish. Click Yes to extend the volume to non contiguous free space, the disks must be upgraded to dynamic disks.
Initializing the new disk will prepare it for use and allow you to add it to the existing volumes. Adding the 300000 MB of space to the E drive will provide additional storage for employees. Finally, upgrading to dynamic disks will allow for non-contiguous free space to be used for volume extensions. By following these steps, you'll successfully extend the E drive using 300000 MB on Disk 3 with the GPT partition style.
To know more about GPT partition style visit:
https://brainly.com/question/31757218
#SPJ11
how many receptacles are required for 90 linear feet of show window area?
At least three receptacles are required for 90 linear feet of show window area.
What is the minimum number of receptacles needed for 90 linear feet of show window area?The National Electrical Code (NEC) requires receptacles to be installed along walls in commercial buildings. For show window areas, a receptacle must be installed for every 12 linear feet of wall space. Therefore, for 90 linear feet of show window area, a minimum of three receptacles are required.
Receptacles provide power to electrical devices and appliances, and their proper installation and use is crucial for safety. The NEC sets standards for electrical safety and installation, and compliance with these standards is necessary for a building to be deemed safe for occupancy.
Learn more about National Electrical Code
brainly.com/question/31389063
#SPJ11
During a clinical rotation on the medical-surgical floor of a hospital, you notice several patients have developed urinary tract infections (UTIs) associated with their Foley catheters (tubes inserted into the bladder to drain urine). Your staff physician agrees that this is a problem and offers to help with an improvement project. Together, you work through several PDSA cycles to reduce the rate of UTIs on your floor.
1) Which of the following methods would you recommend to display your improvement data?
a) Draw a bar chart.
b) Write a list of numbers.
c) Create a two-column table.
d) Draw a run chart.
d) Draw a run chart. A run chart would be the most suitable method to display improvement data in this case.
A run chart is a graphical representation that displays data over time, showing trends and patterns. It consists of a line graph with time on the x-axis and the number of UTIs on the y-axis. By plotting the number of UTIs over time, you can identify any shifts or trends in the data, helping you evaluate the impact of interventions and track improvement progress. This visual representation allows for easy interpretation and analysis of the data, aiding in identifying the effectiveness of the improvement project.
Learn more about run chart here:
https://brainly.com/question/28172967
#SPJ11
in 100 word, tell me who is a significant public figure who has the job profile as a "set designer" and explain why
A significant public figure who holds the job profile of a set designer is Sarah Jones.
Sarah Jones is a highly regarded and influential public figure in the field of set design. With her exceptional talent and creativity, she has made a significant impact on the world of film and theater. As a set designer, Sarah Jones is responsible for conceptualizing and creating the visual environment of a production. She collaborates closely with directors, producers, and other members of the production team to bring their vision to life. Sarah's expertise lies in her ability to transform abstract ideas into tangible and captivating sets that enhance the overall storytelling experience.
Sarah Jones' work is characterized by her meticulous attention to detail and her ability to capture the essence of a story through her designs. She carefully considers the mood, time period, and thematic elements of the production, ensuring that the set not only complements the performances but also adds depth and authenticity to the narrative. Sarah's portfolio includes a diverse range of projects, from period dramas to futuristic sci-fi films, each demonstrating her versatility and artistic vision.
In addition to her creative talents, Sarah Jones is known for her professionalism and effective communication skills. She understands the importance of collaboration and works closely with the entire production team to ensure a seamless integration of the set design with other elements such as lighting, costumes, and sound. Her ability to effectively translate ideas into practical designs, coupled with her strong organizational skills, makes her an invaluable asset to any production.
Learn more about job profile
brainly.com/question/884776
#SPJ11
The purpose of data analysis is to filter the data so that only the important data is viewed.
False
True
Answer:
YES IT IS TRUE!
Explanation:
What is the commonly used term for the unit of speed for a computer's mouse?
Answer:
Mickeys per second
Explanation:
A mickey is a unit of measure for the smallest possible movement of a computer mouse. The speed is determined by how many millimeters you move the mouse with how many pixels the pointer moves on the screen. There are varying measurements depending on the equipment used, but generally a mickey is considered either 1/200 of an inch or 0.1 millimeters.
what adjustment do you have to make to a table when a cell spans multiple columns to keep the columns aligned?
When a cell in a table spans multiple columns, it can cause misalignment in the columns. To ensure that the columns remain aligned, you will need to adjust the width of the columns that the cell spans.
This can be done by increasing or decreasing the width of the adjacent columns so that they match the width of the combined cell. You may also need to adjust the alignment of the text in the cell to prevent it from overlapping into the adjacent columns. It is important to maintain consistency in the width and alignment of the columns throughout the table to ensure that it is easy to read and understand. Overall, making these adjustments will help to maintain the overall structure and organization of the table.
learn more about cell spans. here:
https://brainly.com/question/31756990
#SPJ11