Let us build on the solution that we previously created and write a program that takes any number of values as input, and outputs the average, min, and max only if the input values were all numeric Ex If the input is 15 20 0 5 the output is 100.20 Use (1.0f) to format the output of the computed average Define and use in your program the following functions to make your code more modular • convert_str_to_numeric_1int-taken an input string, splits it into tokens, and returns the tokens stored in a list on all tokens were numeric, otherwise, returns an empty list • get_avg-if the input list is not empty and stores only numerical values, returns the average value of the elements, otherwise, returns • get_min if the input list is not empty and stores only numerical values, returns the minimum value in the list otherwise, returns • get_max of the input list is not empty and stores only numerical values, returns the maximum value in the list otherwise, returns None None None Hint. The string method atr. indigit() will help determine if an input string contains only the numbers 0-9 (see the Section on String mathadh

Answers

Answer 1

Answer:

Following are the code to these question:

def convert_str_to_numeric_list (numbers):#defining a method convert_str_to_numeric_list that holds number as a parameter

   numbers_list = numbers.split ()#defining a list that hols list value by using splits method

   for i in range (len (numbers_list)):#use loop for calculate the length of list

       if (numbers_list[i].isdigit ()):#use if that check digits in list

           numbers_list[i] = int (numbers_list[i])#convert list value into numbers  

       else:#else block

           return[] #use return to return list v

   return numbers_list #returning list

def get_avg (numbers_list):#defining a method get_avg that holds list in parameter

   if (len (numbers_list) != 0):#use if to check lenght of the list is not equal to 0

       return sum (numbers_list) / len (numbers_list)#use return to calculate average of the list

   else:  #use else block

       return None #return None value

def get_min (numbers_list):#defining get_min method that holds list in parameter

   if (len (numbers_list) != 0):#use if to check lenght of the list is not equal to 0

    return min (numbers_list) #use return to calculate the minimum element in list

   else: #use else block

    return None #return None

def get_max (numbers_list):#defining get_max method that holds list in parameter

   if (len (numbers_list) != 0): #use if to check lenght of the list is not equal to 0

       return max (numbers_list) #return minimum number in the list elements

   else:# use else block

       return None #return None

numbers = input () #defining numbers that use input method to input value

numbers_list = convert_str_to_numeric_list (numbers) #use list that pass hold the method value

average = get_avg (numbers_list)#defining average variable that calls get_avg method

minimum = get_min (numbers_list)#defining minimum variable that calls get_min method

maximum = get_max (numbers_list)#defining maximum variable that calls get_max method

if (len (numbers_list) != 0):#if to check lenght of the list is not equal to 0

   print ("{:.0f} {} {}".format (average, minimum, maximum)) #print calculated values.

Output:

15 20 0 5

10 0 20

Explanation:

In this code,  a method "convert_str_to_numeric_list"  is declared that holds a numbers variable as a parameter and inside this, a list is declared that

that splits the lists and in the for loop, it checks the length of the array and converts the list value into the numbers, and returns its values.

In the next step, "get_avg, get_min, and get_max" three methods are declared, that check the length of the list and return its respective values.

At the last, the numbers are declared that inputs values and passes into the list and use "average, minimum, and maximum" variable to call the method holds its value and at the last, it uses the print method to print its values.


Related Questions

What can be changed when a style is modified?

tables
spelling
text content
font
answer fast!

Answers

Answer:

Font

no hate If I'm wrong :)

can you help me with this question please ​

Answers

d. half period because it is the converting of bidirectional current flow to unidirectional currency flow.

Antivirus is a program that detects error.True or False.​

Answers

Answer:  false

Explanation:

Because it isn't true.


Describe the major elements and issues with system prototyping​

Answers

Answer:

Pic attached...

Hope it helps!!!

Your tasks include identifying competitors, determining your company's market penetration and consulting market research sources. These tasks are examples of:
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

search engine optimization (SEO).
B

off-site Web analytics.
C

on-site Web analytics.
D

pay-per-click.

Answers

Answer:

B. off-site Web analytics.

Explanation:

Marketing can be defined as the process of developing promotional techniques and sales strategies by a firm, so as to enhance the availability of goods and services to meet the needs of the end users or consumers through advertising and market research. The pre-service strategies includes identifying the following target market, design, branding, market research, etc.

Market research can be defined as a strategic technique which typically involves the process of identifying, acquiring and analyzing informations about a business. It involves the use of product test, surveys, questionnaire, focus groups, interviews, etc.

Web analytics refers to a strategic process which typically involves the collection of data, as well as the study of user behavior in an attempt to enhance or boost market share and sales. It is divided into two main categories;

I. on-site Web analytics.

II. off-site Web analytics.

In this scenario, your tasks include identifying competitors, determining your company's market penetration and consulting market research sources. These tasks are examples of off-site Web analytics.

HOW DO I CONNECT TO MY mysql server on my computer locally using php and also how to run it on the browser

Answers

Answer:

<?php

$mysqli = new mysqli("127.0.0.1:3307", "myUser", "myPass", "databasename");

$query = "SELECT * FROM users ORDER BY name";

if($result = $mysqli->query($query))

{

   echo '<ul>';

while ($obj = $result->fetch_object())

   {

       echo '<li>'.$obj->name.'</li>';

   }

   $result->free();

   echo '</ul>';

}

else

{

   die("nothing found");

}

$mysqli->Close();

?>

Explanation:

This should get you started.

Match the OOP concept to its definition.
encapsulation
data abstraction
inheritance
derived class
defines a class in terms of another class
arrowRight
inherits the properties of a base class
arrowRight
provides only essential information to the world
arrowRight
binds data and functions together
arrowRight

Answers

Answer:

defines a class in terms of another class = inheritance

inherits the properties of a base class = derived class

provides only essential information to the world = data abstraction

binds data and functions together = encapsulation

Explanation:

What is the code for this please?​

Answers

What you mean code like a escape room I need more info

Question 12)
What element should the introduction of an effective essay have?

A.
a call to action
B.
a main idea statement
C.
a summary of the topic
D.
evidence to support the details
E.
details to support the topic

Answers

Answer:

The introduction of your essay should have the summary of your topic.

Explanation:

You obviously need to know what to write for your essay otherwise you would have no ideas, clues, evidence, or any elaboration for what your writing about. Hope this helps

The rhythmic note that three beats is called a____half note.

Answers

Answer:

it is called a dotted half note

Answer:
Dotted half note

The Binder Prime Company wants to recognize the employee who sold the most of its products during a specified period. Write a query to display the employee number, employee first name, employee last name, email address, and total units sold for the employee who sold the most Binder Prime brand products between November 1, 2017, and December 5, 2017. If there is a tie for most units sold, sort the output by employee last name

Answers

The answer will be one month

state and explain 5 importance of ICT in an organization​

Answers

Answer:

Explanation:

ICT simply refers to Information technology and it is the digital technologies used in various sectors to help economic agents make use of information.

The importance of ICT include:

1. Communication: ICT is vital for communicating in organizations as information are spread faster and employees have quicker access to information.

2. Marketing and Sales: ICT is vital for the marketing of products as products can be advertised on social medias etc.

3. Efficiency and effectiveness: There's efficiency and effectiveness on the part of the organization as the needs of the customers are attended to quickly.

4. Improvement in management decision: ICT is also vital in the enhancement of management decisions.

5. It is also vital is the storage of vital data's in the organization.

2.5 lesson practice edhesive

Answers

Answer:

Huh,.......? what.....?

Answer:

1. They are contained in the math module.

2. 0, 1, ... 7

3. 0.0 <= r < 5

Explanation:

An attacker has hidden an NFC reader behind an NFC-based kiosk in an airport. The attacker uses the device to capture NFC data in transit between end user devices and the reader in the kiosk. She then uses that information to masquerade as the original end user device and establish an NFC connection to the kiosk. What kind of attack has occurred in this scenario

Answers

Answer:

Nfc relay attack

Explanation:

The NFC relay attack occurs when data is extracted by an attacker who puts himself in the middle of two parties having a communication with each other. As the message gets to a party, the attacker gets it and modifies it to their taste then passes it on.

This attacker in this question is extracting data by establishing communication between end user devices and reader in the kiosk

A network administrator enters the service password-encryption command into the configuration mode of a router. What does this command accomplish?

Answers

Answer:

A network administrator enters the service password-encryption command into the configuration mode of a router. What does this command accomplish? This command prevents someone from viewing the running configuration passwords. You just studied 28 terms!

Add the following method to the Point class: public double distance(Point other) Returns the distance between the current Point object and the given other Point object. The distance between two points is equal to the square root of the sum of the squares of the differences of their x- and y-coordinates. In other words, the distance between two points (x1, y1) and (x2, y2) can be expressed as the square root of (x2 - x1)2 (y2 - y1)2. Two points with the same (x, y) coordinates should return a distance of 0.0.
public class Point {
int x;
int y;
// your code goes here
}

Answers

Answer:

public class Point

{

  public int x;

  public int y;

  Point(int x,int y)

  {

      this.x=x;

      this.y=y;

  }

  public static void main(String[] args)

  {

      Point p1=new Point(-2,3);

      Point p2=new Point(3,-4);

      System.out.println("distance:"+distance(p1,p2));

 }

  private static double distance(Point p1,Point p2)

  {

      return Math.sqrt(Math.pow(p2.x-p1.x, 2)+Math.pow(p2.y-p1.y, 2));

  }

}

Explanation:

The java program defines the Point class and the public method 'distance' to return the total distance between the two quadrants passed to it as arguments (they are both instances of the Point class).

What is used to prevent all vlans from going across a trunk?

Answers

If you want to play Valorant with me my name is
Ticklemyguitar and my riot id is 2735

How does an online discussion group differ from one that is held face-to-face?

There is no need for group roles when holding online meetings.
Online discussion groups do not allow members to develop critical-thinking skills.
Group members are more likely to bond together as a group online than they would when meeting face-to-face.
Facilitating an online conversation may require even more work, so that participants continue engaging with one another online.

Answers

Answer: they always will have a different thinkage from others

Explanation:Some people need actual in person learning for better grades it also keeps them from getting distracted easily, they have different brains in everyone in the world everyone thinks, acts and talks in different ways some people dont need in person school because they would rather be online wich are both ok so yes they do bond together online but better in person.

Online discussion group differ from one that is held face-to-face as Group members are more likely to bond together as a group online than they would when meeting face-to-face. Thus, option C is correct.

What is software organization?

A system that defines how specific activities, in this case, the software development process, are directed to achieve corporate goals is referred to as an organizational structure. These activities could include putting rules, roles, and responsibilities in place.

There are four basic modes of collaboration, as illustrated by the exhibit "The Four Ways to Collaborate": a closed and authoritarian network (an elite circle), an open and hierarchical connectivity (an innovation mall), an open and flat network (an innovation community), and a shuttered and flat network (a consortium).

Groupware is software that allows a group of people to work together on the same system or application, regardless of where they are. Email, newsgroups, and many more are examples of groupware applications.

Thus, option C is correct.

For more details regarding collaborative applications, visit:

brainly.com/question/8453253

#SPJ3

Swapping Order of Vowels Write a program to swap the order of the vowels in a given word. For example, if the word is programming, the output is prigrammong. Here, the initial order of vowels is o, a, i which changes to i, a, o. Assume that the letters of the words are in lowercase.

Answers

Answer:

Program is as follow:

Explanation:

#include<iostream.h>

#include < conio.h>

bool isVowel(char b)

{

return

( b=='a' || b=='A' || b=='e' || b=='E' || b=='i' || b=='I' || b=='o' || b=='O' || b== 'u' || b=='U');

For swaoing the vowels

string reverseVowel ( String str)

{

int j = 0;

string v ;

for ( int i= 0 ; str [i]]!='0'; i++)

if( isv(str[i]))

v[j++] = str[i[;

for ( int i = 0; str[i]! = '0' ; i++

if ( isv (str[i]))

str{i} = v [--j]

return str;

}

int main ()

{ string str = " Programming";

cout<<swapv(str);

return 0 ;

}

Consider the following field and incomplete method of some class. The method calcTotal is intended to return the sum of all values in vals.

private int[] vals;

public int calcTotal()
{
int total = 0;

/* missing code */

return total;
}
Which of the code segments shown below can be used to replace /* missing code */ so that calcTotal will work as intended?

I.
for (int i : vals)
{
total += i;
}
II.
for (int pos = vals.length; pos > 0; pos--)
{
total += vals[pos];
}
III.
int pos = 0;
while (pos < vals.length)
{
total += vals[pos];
pos++;
}


I only
II only
I and III
II and III
III only

Answers

Answer:

I and III  

Explanation:

We need a solution that iterates through the each item in the vals array and sums them (cumulative sum). The result should be held in total.

I:

This one uses enhanced for loop (i refers to the each value in vals) and sums the values.

II:

This one uses for loop, but the loop is not constructed well. The control variable of the loop, pos, initially set the length of the vals and the loop iterates while pos is greater than 0. If vals have 10, 20, 30 as values, the length would be 3. In this case, vals[pos] when pos is 3, would give us an error because last index would be 2 in that scenario. Also, you can't access the first value because loop will stop when pos is 0.

III:

This one uses a while loop and iterates each value in the vals and sums them. Note that in this case, the values pos have will be 0, 1, 2 ..., length-1 - which are valid to access each item.

What is it called when you remove some information from a file or remove a file from the disk ? A) save b) delete c) edit d) remove

Answers

Answer:

delete is the answer okkkkkkkkkkkkkkkk

How do you open the Font dialog?​

Answers

Explanation:

Click the Home tab.

In the Fonts group, click the dialog box launcher button.

The button is found in the lower-right corner of the Font group.

The Font dialog box contains all the commands for formatting text, including quite a few that didn’t find their way into the Font group on the Ribbon. As with all text formatting, the commands you choose in the Font dialog box affect any new text you type or any selected text in your document.

When you’ve finished setting up your font stuff, click the OK button. Or click Cancel if you’re just visiting.

Use the Ctrl+D keyboard shortcut to quickly summon the Font dialog box.

hope my answer helps

pls mark this as brainlist

be sure to follow me and I will follow you back

stay safe

good day

g Consider the turning point problem again, but this time you are given a sequence of at least three integers, which consists of a decreasing subsequence followed by an increasing subsequence. Using the divide and conquer technique, develop a recursive algorithm that finds the index of the turning point in the sequence (that is, the point where it transitions from a decreasing subsequence to an increasing subsequence). For example, in the sequence [43 30 16 10 7 8 13 22], the integer 7 is the turning point and its index is equal to 4 (assuming the starting index is 0). So, the algorithm should return 4

Answers

Answer:

Explanation:

The following code is written in Python, it creates a recursive function that takes in a list as a parameter, then compares the first two items in the list if the first is greater, it increases the index by one and calls the function again. This is done until the turning point is found, it then prints out the position of the turning point int the list.

def find_turning_point(list, x=0):

   if list[x] > list[x + 1]:

       x += 1

       return find_turning_point(list, x)

   else:

       return "The turning point position is: " + str(x)

Which is not a primary function of excel

Answers

i’m not sure what your choices are for this, but i believe it’s word processing.

Explanation:

Word Processor , it's really cra ppy btw

In QBasic, create a number guessing challenge. Your program should generate a random number from 1-
100 (inclusive). Let the user guess a number. The program should let the user guess until they get the
correct number. After each input, the program should tell the user whether they guessed the correct
number, or if they guessed too high or too low. While the user is entering guesses, the program should
keep a count of the number of guesses that it takes to get the correct number. After the user guesses
the correct number, the program should congratulate the user and tell them how many guesses it took
them to get the correct number. By the way, if the user chooses carefully, they should be able to guess
the number within 7 tries. But, your program should still let the user keep guessing until they guess the
correct number

Answers

Answer:

yes

Explanation:

PLEASE HELP ME WITH THIS PYTHON CODE::::: THANKS!!!



Lists are an example of a data abstraction.


A data abstraction can often contain different types of elements. It also provides a separation between the abstract properties of a data type (integer, boolean, string) and the concrete details of its representation. Basically, it doesn’t matter that the type are different!


Create an empty list. Append the integer 3, a string of "hello" and a boolean of False into the list. Print out each index individually. Now, remove the number 3 and False from the list.


Finally, print out the list again.

Answers

Answer:

Explanation:

The following Python code does exactly as requested. Once the list is created and the elements are added to it, it uses a for loop to print out each element individually. Then once the loop is over it removes the 3 and False elements from the list and creates another for loop to print the remaining element(s) individually again.

my_list = []

my_list.append(3)

my_list.append("hello")

my_list.append(False)

for x in my_list:

   print(x)

my_list.remove(3)

my_list.remove(False)

for x in my_list:

   print(x)

we are writing a program that takes a word and checks how many letters​

Answers

Answer:

def word_count(word):

return len(word)

a = word_count('scream')

print(a

Explanation:

Using python3:

def word_count(word):

#defines a function named word_count which takes in a single argument which is the word to be counted

return len(word)

#The only thing the function does is to count the number letters in the word.

For instance :

return len(word)

Calling the function and attaching it to the variable named a

Counts the number of letters in scream and assigns the result to a

a = word_count('scream')

print(a)

a gives an output of 6 ; which is the number of letters in scream.

Greedy Algorithm Design
A couple wants to buy n major items. They will buy one item per month. They will buy all of their items at the CrazySuperStore. Due to the current economy, it is known that at some point in the future there will be a single price hike on all items at the same time, but due to the uncertainty of economic processes, it is not known when that price hike will occur. For each of the n items the couple wants to buy, both the current price, ai and the future price, bi (bi > ai), are known. (Note that the individual price hikes on items may vary. For example, one item may go from $100 to $105 while another might go from $300 to $400. They only assumption you may make about the prices is that the second price is strictly higher than the first and that you have access to all before/after prices.) Devise a greedy strategy so that the couple is guaranteed to minimize the amount of money they spend on the items. Assume that no matter what, the couple will buy all items. Clearly describe your strategy and intuitively (or formally) prove why it's optimal.

Answers

Answer:

The algorithm is as follows:

1. Start

2. Get the number of items (n)

3. Get the current price of the n items (a1, a2..... an)

4. Get the possible hiked price of the n items (b1, b2..... bn)

5. Calculate the difference between the current and hiked prices for each item i.e. [tex]d_i = b_i - a_i[/tex]

6. Sort the differences in descending order (i.e. from the greatest to the least)

7. Buy items in this order of difference

8. Stop

Explanation:

The algorithm is self-explanatory; however, what it does is that:

It takes a list of the current price of items (say list a)

E.g: [tex]a = [100, 150, 160][/tex]

Then take a list of the hiked price of the items (say list b)

E.g: [tex]b = [110, 180, 165][/tex]

Next, it calculates the difference (d) between corresponding prices [tex]d_i = b_i - a_i[/tex]

[tex]d = [(110 - 100),(180-150),(165-160)][/tex]

[tex]d = [10,30,5][/tex]

Sort the difference from greatest to lowest (as the difference is sorted, lists a and b are also sorted)

[tex]d = [30,10,5][/tex]

[tex]a = [150, 100, 160][/tex]

[tex]b = [180, 110, 165][/tex]

If there is no hike up to item k, the couple would have saved (i = 1 to d[k-1])

Assume k = 3

The couple would have saved for 2 item

[tex]Savings = d[1] + d[2][/tex]

[tex]Savings = 30 +10[/tex]

[tex]Savings = 40[/tex]

The saved amount will then be added to the kth item in list a i.e. a[k](in this case k = 3) in order to buy b[k]

Using the assumed value of k

[tex]a[k] = a[3][/tex]

[tex]a[3] = 160[/tex]

[tex]b[3] = 165[/tex]

Add the saved amount (40) to a[3]

[tex]New\ Amount = 40 + 160[/tex]

[tex]New\ Amount = 200[/tex]

This new amount can then be used to buy b[3] i.e. 165, then they save the change for subsequent items

What will be the output of using the element in the given HTML code?



1011 2


A.
10112
B.
10112
C.
21011
D.
21011

Answers

Answer:

i think c.

Explanation:

Answer:

Answer is B: 1011 with the two under

Explanation:

I got it right on plato

A palindrome is a string that is the same when read left to right as when read right to left. Write a program that determines if an arbitrary string is a palindrome. Assume that the string can have blanks, punctuation, capital letters and lower case.

Answers

Answer:

In Python:

strng = input("String: ")

revstrng = strng[::-1]

if strng == revstrng:

   print("True")

else:

   print("False")

Explanation:

This prompts user for string input

strng = input("String: ")

This reverses the string input by the user

revstrng = strng[::-1]

This checks if strings and the reverse string are equal

if strng == revstrng:

Prints True, if yes

   print("True")

Prints False, if otherwise

else:

   print("False")

Other Questions
Help please!! Thanks I don't know how to do this... Please help me It costs five dollars to get into the local skating rink. The video games cost 75 each to play. If all you have to spend on skating and video games is twelve dollars, what is the maximum number of video games you can play? how do i write this as an equation? (inequalitites) are my hands meant to constantly smell of cheese? Fannie has a credit card that using the average daily balance method. For the first 16 days of one of her billing Cycles, her balance was $1,050, and for the last 14 days of the billing cycle, her balance was $1,280. If a credit cards APR is 19%, which of these Expressions could be used to calculate the amount Fannie was charged in interest for the billing cycle?A. (0.19/365 x 31)(16 x $1050+14 x $1280/31)B. (0.19/365 x 30)(16 x $1050+14 x $1280/30)C. (0.19/365 x 30)(14 x $1050+16 x $1280/30)D. (0.19/365 x 31)(14 x $1050+16 x $1280/31) Find the surface area of the solid figure.10 ft10 ft6 ft15 ft16 ftftftPerimeter of base =Height =Base area =The surface area isft2square feet. Grayson (single) is in the 24 percent tax rate bracket and has sold the following stocks in 2019: Date AmountDescription Purchased Basis Date Sold Realized Stock A 1/23/1996 $7,900 7/22/2020 $5,020 Stock B 4/10/2020 15,300 9/13/2020 19,090 Stock C 8/23/2018 12,375 10/12/2020 17,510 Stock D 5/19/2010 5,750 10/12/2020 13,375 Stock E 8/20/2020 7,755 11/14/2020 3,825 1. What is Grayson's net short-term capital gain or loss from these transactions?2. What is Grayson's net long-term gain or loss from these transactions?3. What is Grayson's overall net gain or loss from these transactions?4. What amount of the gain, if any, is subject to the preferential rate for certain capital gains? A town plans to clear a patch of forest to make a road wider. What possible changes should the town take into account? Generalized goals are more likely to be achieved than specific goals. True or False Identify each sentence as either sentence or fragment 1.) Do your work 2.) Every time she raises her hand. 3.) Never in a million years 4.) Because I said so 5.) They wondered 6.) Go7.) left on the frying pan 8.) Each and every one of the misbehaved kids 1) In your own words, explain when (-3)n is positive and when it is negative. Which innovation allowed for the mass production of goods?Question 6 options:1) Cotton gin2) Interchangeable parts Your soccer coach requires you to run 10laps. You run 12 laps. What percent of therequired laps did you run?and maybe this one- hehe- An object with little mass won't require a lot of force to move.Group of answer choicesA. FalseB. TrueC. Only sometimes What kind of questions are used to start a socratic essay A ramp was constructed to load a truck. If the ramp is 8 feet long and the horizontal distance from the bottom of the ramp to the truck is 3 feet, what is the vertical height of the ramp? Lonergan Company occasionally uses its accounts receivable to obtain immediate cash. At the end of June 2021, the company had accounts receivable of $920,000. Lonergan needs approximately $570,000 to capitalize on a unique investment opportunity. On July 1, 2021, a local bank offers Lonergan the following two alternatives:A. Borrow $570,000, sign a note payable, and assign the entire receivable balance as collateral. At the end of each month, a remittance will be made to the bank that equals the amount of receivables collected plus 10% interest on the unpaid balance of the note at the beginning of the period.B. Transfer $620,000 of specific receivables to the bank without recourse. The bank will charge a 3% factoring fee on the amount of receivables transferred. The bank will collect the receivables directly from customers. The sale criteria are met.Required: 1. Prepare the journal entries that would be recorded on July 1 for: a. alternative a. b. alternative b.2. Assuming that 70% of all June 30 receivables are collected during July, prepare the necessary journal entries to record the collection and the remittance to the bank for:____. a. alternative a. b. alternative b. When would a female have a 100% chance of inheriting a sex-linked recessive trait?A. She inherits an affected X chromosome, but only from her mother.B. Mother and father both pass on dominant alleles on somatic (body) chromosomes.oC. She inherits an affected X chromosome from both mother and father.D. Mother and father both pass on recessive alleles on somatic (body) chromosomes. The line plot shows the distances, in miles, run by joggers in a park.---------------------------------A number line with one x above .5, one x above 1.5, one x above 2, one x above 3, two xs above 3.5, two xs above 4, one x above 4.5, and one x above 8.5.How many runners ran at least 3 miles?Enter your answer in the box.{ } runners In 1994, Leroy Burrell of the United States set what was then a new world record for the mens 100 m run. He ran the 1.00 102 m distance in 9.5 s. Assuming that he ran with a constant speed equal to his average speed, and his kinetic energy was 3.40 103 J, what was Burrells mass?