PLZ HELP NEEDS TO BE ANSWERED ASAP THANK YOU



Please describe what this assignment is about

Write a program to input 6 numbers. After each number is input, print the biggest of the numbers entered so far.

Sample Run
Enter a number: 1

Largest: 1

Enter a number: 3

Largest: 3

Enter a number: 4

Largest: 4

Enter a number: 9

Largest: 9

Enter a number: 3

Largest: 9

Enter a number: 5

Largest: 9

Answers

Answer 1

In python:

lst = ([])

largest = 0

while len(lst) != 6:

   user_number = int(input("Enter a number: "))

   lst.append(user_number)

   for i in lst:

       if i > largest:

           largest = i

   print(largest)

I hope this helps

Answer 2

Answer:

largest = None

for i in range(0,6):

 d = int(input("Enter a number: "))

 if not largest or d > largest:

   largest = d

 print("Largest: " + str(largest))

Explanation:

Worked for me!!! :)


Related Questions

You guys can put A. B. C. or D.

You guys can put A. B. C. or D.

Answers

Answer:

A

Explanation:

I think it’s definitely B

For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.

For all hypertext links in the document, set the font-color to ivory and set the text-decoration to none.
(CSS)

Answers

Using the knowledge in computational language in html it is possible to write a code that For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.

Writting the code:

<!doctype html>

<html lang="en">

<head>

  <!--

  <meta charset="utf-8">

  <title>Coding Challenge 2-2</title>

</head>

<body>

  <header>

     <h1>Sports Talk</h1>

  </header>

  <nav>

     <h1>Top Ten Sports Websites</h1>

     <ul>

   

     </ul>

  </nav>

  <article>

     <h1>Jenkins on Ice</h1>

     <p>Retired NBA star Dennis Jenkins announced today that he has signed

        a contract with Long Sleep to have his body frozen before death, to

        be revived only when medical science has discovered a cure to the

        aging process.</p>

        always-entertaining Jenkins, 'I just want to return once they can give

        me back my eternal youth.' [sic] Perhaps Jenkins is also hoping medical

        science can cure his free-throw shooting - 47% and falling during his

        last year in the league.</p>

     <p>A reader tells us that Jenkins may not be aware that part of the

        least-valuable asset.</p>

  </article>

</body>

</html>

See more about html at brainly.com/question/15093505

#SPJ1

For ul elements nested within the nav element, set the list-style-type to none and set the line-height
For ul elements nested within the nav element, set the list-style-type to none and set the line-height

1 – Como contar uma história com responsabilidade e ética, utilizando técnicas aprimoradas para elaborar uma narrativa atrativa e responsável?

Answers

Answer:

Explain each part of the story in appropriate manner.

Explanation:

In order to tell the story with responsibility and ethics and create an attractive and responsible narrative, we have to explain each paragraph of the story that gives more information about the story as it proceeds to the audience. The story must have actions and humor in order to increase the interest of the listeners as well as a good message to the audience. Avoid inappropriate words or language during storytelling because it makes bad impression on the reader's mind.


2. According to the U.S. Department of Labor Statistics, which field of drafting has the highest median
salary:
a.Architectural
b.Mechanical
c.Electronics
d. Radiological

Answers

it is c it’s always the right answer

Amazon warehouse has a group of n items of various weights lined up in a row. A segment of contiguously placed items can be shipped ogether if only if the difference betweeen the weihts of the heaviest and lightest item differs by at most k to avoid load imbalance.Given the weights of the n items and an integer k, fine the number of segments of items that can be shipped together.

Answers

We return the total number of segments that can be shipped together. To find the number of segments of items that can be shipped together with the given conditions, we can use a sliding window approach.

We will initialize two pointers, left and right, both pointing to the start of the list. We will then move the right pointer until the weight difference between the heaviest and lightest items in the current segment is greater than k. Once the difference becomes greater than k, we will move the left pointer to the right until the weight difference becomes less than or equal to k. At this point, we can calculate the number of segments that can be shipped together, which is equal to the number of contiguous subarrays of the segment between left and right. Here is the Python code to implement this approach: sql

def count_segments(items, k):

   left, right = 0, 0

   n = len(items)

   segments = 0

   while right < n:

       while right < n and max(items[left:right+1]) - min(items[left:right+1]) > k:

           left += 1

       segments += right - left + 1

       right += 1

   return segments

In this code, items is a list of weights of the n items, and k is the maximum weight difference allowed between the heaviest and lightest items in a segment. The function count_segments returns the number of segments that can be shipped together. We start with both left and right pointers pointing to the first item in the list. We then move the right pointer to the right until the weight difference between the heaviest and lightest items in the current segment is greater than k. Once the difference becomes greater than k, we move the left pointer to the right until the weight difference becomes less than or equal to k. At this point, we can calculate the number of segments that can be shipped together, which is equal to the number of contiguous subarrays of the segment between left and right. We increment segments by this value, and then move the right pointer to the right to start the next segment.

Learn more about items here:

https://brainly.com/question/30728723

#SPJ11

computers have become irrevocably entrenched in society. what is the meaning of the word irrevocably?

Answers

The word "irrevocably" means that something has become firmly established and cannot be changed or reversed.

"Irrevocably" is an adverb that describes a state of permanence or finality. When something is described as irrevocably entrenched, it means that it has become deeply rooted or firmly established in a way that cannot be undone or altered. In the context of computers being irrevocably entrenched in society, it implies that computers have become an integral and essential part of our daily lives, to the point where their presence and influence are so deeply ingrained that it is impossible to reverse or eliminate their impact.

The irrevocable entrenchment of computers in society signifies a level of dependence and reliance on these machines that is unlikely to be reversed. Computers have permeated various aspects of modern life, including communication, education, business, entertainment, and even personal relationships. They have revolutionized industries, enhanced efficiency, and opened up new possibilities for innovation. The ubiquity of computers has reshaped societal structures and norms, transforming the way we work, learn, and interact with the world. Given the extensive integration and dependence on computers, it is challenging to envision a future where they are entirely eradicated or their influence diminished, hence their irrevocable nature in contemporary society.

Learn more about computers here:

https://brainly.com/question/32297638

#SPJ11

Write a script in HTML for displaying your name in brown color.

Answers

Answer:

I don't quite understand the question. If you mean "create page in HTML", see image 2. If you mean "create script that is placed in the HTML page", see image 1

HTML is not a programming language. It is a markup language. You should write scripts in JavaScript or other programming languages.

1

<!DOCTYPE html>

<html>

<head>

 <meta charset="utf-8">

</head>

<body>

 <h1>Hello world!</h1>

 <*cript>

  function paint() {

   document.querySelector("h1").style.color = "brown";

  }

  setTimeout(paint, 2000)  

 </*cript>

</body>

</html>

2

<!DOCTYPE html>

<html>

<head>

 <meta charset="utf-8">

 <style>

  h1 {

   color: brown;

  }

 </style>

</head>

<body>

 <h1>Hello world!</h1>

</body>

</html>

Write a script in HTML for displaying your name in brown color.
Write a script in HTML for displaying your name in brown color.

Which statement describes one of the responsibilities of a computer programmer?

A.
providing remote technical support to users
B.
installing, configuring, and monitoring network systems
C.
using computer-generated software to create special effects
D.
using coding languages to create software for retrieving data
E.
designing and implementing databases

Answers

Answer:

d i think

Explanation:

what is an if then block and how does it work on code.org

Answers

Send more information this question doesn’t make any sense

you have been tasked with deploying a security solution that will monitor activity related to a specific application server. the solution must be able to detect suspicious activity and take steps to prevent the activity from continuing. what should you deploy?

Answers

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

16. aw computing would like to improve its case lightning record page by including: --a filtered component to display a message in bold font when a case is saved as a critical record type. ---a quick way to update the account status from the case layout. which two components should an administrator use to satisfy these requests? choose 2 answers

Answers

The administrator should use a Quick Action Component to provide a button for altering the account status and a Record Detail Component with Conditional Formatting to display a message in bold font for key.

How can I link a lightning record page to a certain record type?

Choose a list item by clicking it. From the left-hand panel, select Lightning Record Pages. On the upper right, select the See Page Assignments button. Choose a value from the App, Record Type, and Profile picklists in the Look Up an Assignment box.

What do Salesforce Lightning Record Pages mean?

A compilation of several elements on a single web page is known as a Lightning Record Page. Each object, such as Accounts.

To know more about administrator  visit:-

https://brainly.com/question/30206212

#SPJ1

Is this a desktop or a computer, or are they the same thing

Is this a desktop or a computer, or are they the same thing

Answers

Answer:

Same thing.

Explanation:

When talking about careers in designing game art, the unit mentioned that a good portfolio and a clear record of experience in game design boosts your likelihood of employment. Think through all of the different skills you have been learning in this course. If you were given the option to shadow someone using these skills to develop a game, which skills are you most interested in developing right now? What kinds of creations could you add to your portfolio after shadowing someone in this field?​

Answers

Answer:

Explanation:

Many different answerd to this

I dont know what course your taking exactly but i'll do my best <3

Personnally im most interested in balancing in game rewards, balancing AI, or balancing in game currency.

Hmm... I dont really kno what you could add to your portfolio tho. Maybe some things you did that involve what youre interested in doing.

Hope this helps <3

Use this option to view your presentation as your audience will see it. a.File menu b.Play button c.Slide Show button d.Tools menu

Answers

Answer:

C. Slide Show Button

Explanation:

Slide show button is used to view the presentation. It is used when presenting the matetial in the form of slides to the audience. You can add various text, images in your slides and also add animation to your slides. In order to view how these slides and animations applied on slides will look and how they will be seen by the audience during presentation, you can use this slideshow option. Slideshow button can be used from quick access toolbar or you can use F5 key to start the slideshow of your presentation or you can select Slide Show view command at the bottom of the PowerPoint window. This is used to start a presentation from the first slide or even from current slide. This is useful in customizing the slides, visualizing and analyzing the slides making changes or adding slides in the presentation.

Answer:

Your answer is C. Slide Show Button.. Hope this helps!

Explanation:

What is the result when you run the following program?
print("2 + 7")
print(3 + 1)
2+7
4
9
3+1
O an error statement
9
4

Answers

Answer:

The result will be 2+7 for the statement PRINT ("2+7") and 4 for the statement PRINT (3+1).

When a user run "print("2 + 7")", the result will be "2+7" and when a user run "print(3 + 1)", the result will be "4".

Programming

According to the question,

print("2 + 7")

print(3 + 1)

In the above two codes, Due to the general contained double quote (" "), this same software will treat ("2+7") throughout the double quotation as little more than a string, i.e., "2+7."

Whenever users type 3+1 without any of the quotation marks, this should perform the addition between integer digits as well as output the outcome of adding 3 and1, i.e., "4".

Thus the above response is right.

Find out more information about programming here:

https://brainly.com/question/23275071

Authentication within the application includes the client authenticating with the server and the server authenticating with the host

Answers

Authentication within an application is a critical process that ensures that users and servers can securely communicate with one another. It involves verifying the identities of both the client and the server to prevent unauthorized access and protect sensitive data.

The authentication process typically involves multiple steps. First, the client will authenticate with the server using a username and password or another authentication method such as biometrics or multi-factor authentication. This step helps ensure that the client is who they claim to be and that they have the appropriate level of access to the server.After the client has been authenticated, the server must also authenticate with the host or network to ensure that it is authorized to access the necessary resources. This step involves verifying the server's digital certificate, which includes information about the server's identity and the cryptographic keys used to secure communications.authentication within an application is essential for maintaining the security and privacy of sensitive information. By verifying the identities of both the client and the server, applications can prevent unauthorized access and protect against data breaches and other security threats.

To learn more about servers click the link below:

brainly.com/question/7007432

#SPJ4

your users are young children

Answers

The program that solves the problem given is indicated below. This is solved using Python.

What is the program that solves the above-mentioned problem?

The code is given as follows:

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

while True:

  i = 0

  userChoice = input("Adding or Multiplying? (a/m) ")

  if userChoice == "a":

      while i < len(numA):

          answer = int(input("What is {} + {} ".format(numA[i],numB[i])))

          if answer == numA[i] + numB[i]:

              print("Correct!")

          else:

              print("That's incorrect. The right answer is {}".format(numA[i] + numB[i]))

          i += 1

  elif userChoice == "m":

      while i < len(numA):

          answer = int(input("What is {} * {} ".format(numA[i], numB[i])))

          if answer == numA[i] * numB[i]:

              print("Correct!")

          else:

              print("that's incorrect. The right answer is {}".format(numA[i] * numB[i]))

          i += 1

Learn more about Python:
https://brainly.com/question/25774782
#SPJ1

Full Question:

Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying. You will use two lists of numbers. numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]. numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6].

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer. Then ask them to add the second number in each list and so on. If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions. Write your program and test it on a sibling, friend, or fellow student.

What are the steps to add a bibliography to a document? 1. Create a using the proper steps. 2. Go to the tab on the ribbon. 3. In the Citations & Bibliography group, select the Bibliography drop-down menu. 4. Select the correct formatting from the three choices. 5. A bibliography is then added to the

Answers

Answer:

The steps required to add a bibliography after adding the sources of the information contained in the document and marking the references made in the text, are;

1. Click to select insertion point of the bibliography

2. Select the Reference tab by clicking on the Reference tab in the ribbon

3. Within the Citations & Bibliography group, select Bibliography to open  a dropdown list of bibliography format

4. Select the applicable format

5. By selecting the desired bibliography format, the bibliography is inserted at the selected insertion point of the document

Explanation:

Answer:

1. Create a

✔ citation

using the proper steps.

2. Go to the

✔ References

tab on the ribbon.

3. In the Citations & Bibliography group, select the Bibliography drop-down menu.

4. Select the correct formatting from the three choices.

5. A bibliography is then added to the

✔ bottom of the document

Explanation:

Edg 2021

IPv6 can use a DHCPv6 server for the allocation of IPv6 addressing to hosts. Another IPv6 addressing option utilizes the IPv6 Neighbor Discovery Protocol (NDP) to discover the first portion of the IPv6 address (network prefix) from local routers, and the host can create its own host ID. What standard is commonly used by an IPv6 host to generate its own 64-bit host ID

Answers

Answer:

Following are the answer to this question.

Explanation:

It is a mechanism, that is also known as EUI-64, which enables you an automatic generation of its specific host ID. It using the device on the 48-bit MAC address, which helps to construct the special 64-bit host ID. It also helps you to build a DHCP-type IPv6 network, that's why we can say that the above-given standard is widely used to create a 64-bit host ID on IPv6 servers.

what is the kybert satellite

Answers

Answer:

i dont know....there is nothing on that piece of technology

Explanation:

Grace would like to calculate a field in a Word table and add up values from a list of regional sales data.

Which function should she use?

AVERAGE
MAXIMUM
SUM
IF

Answers

Answer:

she should use sum

Explanation:

cuz sum is the best

Answer:

Sum

Explanation:

edg 2021

Why is it so important to have an education plan for the
employees in cyber security?

Answers

Having an education plan for employees in cybersecurity is important because cybersecurity is becoming more and more critical in the current age. Cybersecurity breaches are becoming increasingly widespread and sophisticated, and the threats they pose are significant.

Companies can protect their networks and data only if they have an educated workforce. Companies can use employee cybersecurity education programs to help prevent cyber-attacks. The importance of having an education plan for employees in cybersecurity is as follows:

Employee awareness of risks: Employee training programs teach employees how to recognize and avoid cybersecurity threats, reducing the chance of accidental data breaches. This helps to protect sensitive data, financial resources, and personal information from being compromised.Knowledgeable Staff: Employee training programs allow companies to improve their overall cybersecurity posture by providing employees with the knowledge and skills necessary to identify and mitigate security risks. Employees who receive cybersecurity training are more likely to be aware of security threats and best practices, allowing them to act as a line of defense against cybercriminals.Reduction in Security Breaches: Organizations that invest in employee cybersecurity training can reduce the likelihood of security breaches and data theft. Cybersecurity breaches can lead to significant financial losses, legal ramifications, and reputational damage. In some cases, it can even lead to business failure.Legal Compliance: Organizations that handle sensitive data are required to comply with a wide range of cybersecurity laws and regulations. Organizations that have an employee cybersecurity training program in place will be better equipped to comply with these regulations.

You can learn more about cybersecurity at: brainly.com/question/30409110

#SPJ11

What is the memory called that runs first and then boots?

Answers

Answer:

read only memory (Rom) is the memory that runs fast and then boost.

which effect will a low signal-to-noise ratio (snr) have on the appearance of a digital radiographic image?

Answers

A low signal-to-noise ratio (SNR) will degrade the appearance of a digital radiographic image.

How does a reduced SNR affect the quality of a digital radiographic image?

A low signal-to-noise ratio (SNR) refers to the level of the desired signal compared to the level of unwanted noise in a digital radiographic image. When the SNR is low, it means that the signal (the useful diagnostic information) is weak in relation to the noise (random variations and artifacts). This results in a degraded image quality with reduced clarity and visibility of fine details.

A low SNR can lead to increased image noise, reducing the overall image quality. Noise can manifest as graininess or speckles, obscuring important anatomical structures and decreasing the diagnostic value of the image. Low SNR can also cause a loss of contrast, making it difficult to distinguish between different tissues or abnormalities.

Furthermore, a low SNR can result in decreased spatial resolution, affecting the ability to discern small details and impacting the accuracy of measurements or assessments. It can also lead to increased image artifacts, such as blurring or distortion, further compromising the image's interpretability.

In summary, a low signal-to-noise ratio in digital radiographic images negatively impacts their appearance, reducing image quality, clarity, and the ability to accurately diagnose or analyze the depicted anatomical structures or abnormalities.

Learn more about Signal-to-noise ratio

brainly.com/question/29840678

#SPJ11

1

The tire pressure is 20% underinflated.

The service life is reduced by...

%

check

Answers

Answer

A constant 20 percent underinflated condition will reduce the life of a tire by 30 percent, and 40 percent underinflation will reduce tire life by 50 percent. Underinflation will increase flexing and heat buildup within the tire components which deteriorate tires and reduces casing life and retreadability.

I NEED HELP!!! BRAINLIEST!!!
Drag each function to its protocol name.
Classify the functions of DHCP and DNS protocols.

assigns an IP address to each host

translates domain names into IP addresses

makes it easy to create English or language names for IP addresses

eliminates manual errors in setting up IP addresses

Answers

Answer:

DHCP Dynamic Host Configuration Protocol:

Is a network service that automatically assigns IP addresses and other TCP/IP configuration information on network nodes configured as DHCP clients. Server allocates IP addresses to DHCP clients dynamically. Should be configured with at least one DHCP scope. Scope contains a range of IP addresses and a subnet mask, and can contain other options, such as a default gateway and Domain Name System. Scope also needs to specify the duration of the lease and usage of an IP affects after which the node needs to renew the lease with the SHCP server. Determines the duration, which can be set for a defined time period or for an unlimited length of time.

DNS Domain Name Service: Is a TCP/IP name resolution service that translates FQDNs into IP addresses. System of hierarchical databases that are stored on separate DNS servers on all networks that connect to the Internet. DNS servers store, maintains and update databases, they respond to DNS client name resolution requests to translate host names into IP addresses.

DNS Components

DNS database is divided logically into a heieratchical grouping of domains. Physically into files called zones. Zone files contain the actual IP-to-host name mapping for one or more domains. Zone files is stored on the DNS server that is responsible for resolving hot names for the domains contained in the zone. Each network node in that domain will have a host record within the domain's zone files. Includes the node's host name, FQDN, and assigned IP address.

DNS Servers

*If you are configuring static IP addresses, including the IP address of the default DNS servers as you configure each client.

*If you are using DHCP, use the DHCP scope options to specify the IP Explanation:

dhcp provides an ip addrrss

dns creates language names for ip addresses

dns translates domain names into ip addresses

dhcp eliminates errors

im pretty sure

Select all steps in the list below that should be completed when using the problem-solving process discussed in this chapter.

Answers

Answer: the answer is 6

Explanation:

Hope this helps

coding is..? i need help pls reply quick

Answers

Answer: Code is made up of a series of steps that instruct computers on how to perform a specific task.

Explanation: Computer software, games, apps, and websites can all be created using coding. A programmer is a person who is responsible for writing the programs that drive everything we do on a computer.

Section 6.9 of your textbook ("Debugging") lists three possibilities to consider if a function is not working.

Describe each possibility in your own words.

Define "precondition" and "post-condition" as part of your description.

Create your own example of each possibility in Python code. List the code for each example, along with sample output from trying to run it.

Answers

Answer:

www.dso hellooo miaralo

Where do you want to install?
It looks like you don't have any applicable device(s) linked to
your Microsoft account. To install, sign in on a device with
your Microsoft assount,
Get more info
How do I do this

Answers

This really depends on the thing you are trying to install, and the device you are trying to install it on.

try to find the app info and see what devices it is compatible with. make sure you are using a compatible device, and make sure you are signed in.

Other Questions
When the Fed decreases the discount rate, banks will a. borrow less from the Fed and lend more to the public. The money supply increases. b. borrow less from the Fed and lend less to the public. The money supply decreases. c. borrow more from the Fed and lend less to the public. The money supply decreases. d. borrow more from the Fed and lend more to the public. The money supply increases. Evaluate ab if a=2.5 and b=25 . Write your answer in simplest form. Consider the line y=-3/4x-9.Find the equation of the line that is perpendicular to this line and passes through the point (-4, 2).Find the equation of the line that is parallel to this line and passes through the point (-4, 2).Equation of perpendicular line:Equation of parallel line: Two students fertilize a pair of pea plants. One plant is Rr, and the other is rr. The offspring produced by these two plants all had the dominant trait. The Punnett square showed that there was a 50 percent chance of the offspring carrying rr genes. So, the student assumes that he made an error in determining the genetic makeup of the plants. Do you think the student made an error, or is there another explanation? Explain your answer. Consider a spherical electret of radius 15 cm centered at the origin with 10^22 polar molecules. The dipole moments of the molecules of magnitude 10^-30 Cm point in the positive z-direction. Find the electric field at a point x = y = 0, z = 20 cm.why do i need the 10^22 polar molecules? what equation in griffiths should i use starting a new government is the job of Find two integers whose sum is -7 and product is 6 What is the substance modified in a chemical reaction? If you investigate the Amristar Massacre, what effect will you find it had on British colonial rule in India? Call a string of letters "legal" if it can be produced by concatenating (running together) copies of the following strings: 'v', 'ww', 'rac' yyy' and 'zzz. For example, the string 'EXTvv' is legal because it can be produced by concatenating 'xx', and v', but the string 'xxxcv' is not legal. For each integer n 1, lett, be the number of legal strings with n letters. For example, t1 = 1 ('v'is the only the legal string). t = 2 ts 6 t=at,-1+bt, 2 + ctn-3 for each integer n > 4 where a 12 b - -36 and c 24 For each integer n > 1, let Pn be the number of legal strings with n letters that also read the same right to left as they do left to right (like 'cxcvxxx', for example). Which of the following expressions is equal to P101? P50 + 3p49 O t50 + 3t 18 Otso +148 O t100 +t99 Op100 + P99 O t50 + 3t 49 Op50 + P49 Otso + 149 pls help, geometry !!!!!! NEED HELP ASAP The National Transportation Safety Board publishes statistics on the number of automobile crashes that people in various age groups have. A researcher claims the population proportion of young drivers, ages 18 24, having accidents is greater than 12%. Her study examined 1000 young drivers ages 18 24 and found that 134 had an accident this year. Test at = .05. a) State H0 and Ha b) Find the critical value, show work c) Find the appropriate test statistic, show work d) Do a P - value test e) Make a decision to reject or fail to reject the null hypothesis and interpret the results. What can we make with plastic bottles? In the coronary circulation, oxygen-rich blood is provided to the heart muscle by the ________. At a children's archery camp, the percentage of target hits at different distances from the target for several campers were recorded.The data is shown in the scatter plot below.100).8060.Target Hits (%)40200 48 12 16 20Distance from Target (ft)Which interpretation can be made from this data?OA..There is a positive association between the distance from the target and the percentage of target hits.There is a negative association between the distance from the target and the percentage of target hits.There is no association between the distance from the target and the percentage of target hits.OC.OD. There is both a positive and a negative association between the distance from the target and the percentage of targethits. There are a number of reasons why the practice of financialaccounting tends to ignore the social and environmental impactscaused by organisations. In this regard, explain:how and why the way we def B Check ( the correct sentences. Write an X for the incorrect sentences. Then correct the incorrect sentences. 1. My best friend was playing soccer when she broke her leg. 2. I was watching videos with my friends all weekend. 3. Frida was hanging up the phone on her friend. 4. The boy was falling, and then his friend was comforting him. 5. My friends and I played video games when my mom called. If x=a sintheta and y=bcostheta, show that (b^2)(x^2)+(a^2)(y^2)=(a^2)(b^2)a how does electrolysis of hcl in water work? What is a habitat?A) All the members of a communityB) Many different species living in the same placeC) The role of an organism in its environmentD) The place where an organism lives