Can you please help me with this question please help and i will give you a Brainiest

Can You Please Help Me With This Question Please Help And I Will Give You A Brainiest

Answers

Answer 1

Answer:

Cans for food drive

Step-by-step explanation:

Answer 2

Answer:

Cans for food drive

Step-by-step explanation:

The header should encapsulate all aspects of the table.

Cans of food are brought by the teachers to be donated to the food drive. Hence the answer should be cans for food drive.

Cans recycled are out of context as the cans of food are for donation as seen in the table, not for recycling.

Favourite food and favourite teacher cannot be measured by the data provided which is which teacher bringing how many cans of food for donation. Hence, these 2 are not the answer as well.


Related Questions

The diameter of a circle is ____
the length of its radius.​

Answers

Answer:

The diameter of a circle is twice the length of its radius.​

Step-by-step explanation:

Or you can say double

The diameter of a circle is twice
the length of its radius.

The cost of a 12 ounce bag of cashews is $5.86. What is the cost per ounce of the cashews?

Answers

Answer: 5.86÷12=0.5 in nearest penny Step-by-step explanation: this number kind of problem u solve it using inversely proportional method one one quantity is decreasing which is the ounce

WILL CHOOSE BRAINIEST How many 6-digit numbers, formed using each digit from 1 to 6 exactly once, are divisible by: a.)5 b.)6 c.)12 d.)25

Answers

D) 25 tell me if I did it righ

Answer:

a) divisible by  5:  120 numbers

b) divisible by  6:    360 numbers

c) divisible by  12:     192 numbers

d) divisible by  25:    24 numbers

Step-by-step explanation:

6-digit  numbers => the numbers have the form abcdef

a.) divisible by  5

f = {5}

a  5 values;   b  4 values, c  3 values,  d  2 values ,   e  1 value, f 1 value

=> 5 * 4 * 3 * 2 * 1 * 1 = 120 numbers

b.) divisible by  6

f = {2; 4; 6}

a  5 values;   b  4 values, c  3 values,  d   2 values,   e 1 value, f  3 values

=> 5 * 4 * 3 * 2 * 1 * 3 = 360 numbers

c.) divisible by  12

ef =  {12; 16; 24; 32; 36; 52; 56; 64}

a  4 values;   b  3 values, c  2 values,  d   1 value,   ef  8 values

=> 4 * 3 * 2 * 1 * 8 =192 numbers

d.) divisible by  25

ef =  {25}

a  4 values;   b  3 values, c  2 values,  d   1 values,   ef  1 value

=> 4 * 3 * 2 *1*1 = 24 numbers

What is 500,483,473x5,685+837-372x36

Answers

Answer:

2.8452485e+12

Step-by-step explanation:

find the volume of the cylinder please, I'll mark brainliest if you can help! ​

find the volume of the cylinder please, I'll mark brainliest if you can help!

Answers

The answer is, V≈1130.97

Ms. Jones drove to her hometown for the weekend in Detroit, Michigan. She left at 8:00am and arrived at 12:30pm. How long did it take her to get home? Also, she left with $500. On her trip, she spent $135.55 on gas, she stopped for food and spent $24, she went to the movies and dinner while she was home and spent $75.85, she went to the zoo and spent $37, and she spent $74 in UBER rides. How much money did she spend IN ALL? and how much money does she have left over?

Answers

By subtraction method the time taken by her is 4:30 hours.

Total spent by her is $346.4

She has left over $153.6

What is subtraction?

Subtraction is the system of taken out  a number from another number. It is a primary arithmetic operation which is denoted by a  symbol "-" and it is the method of calculating the difference between two numbers.

such as 9-6=3 18-4=14 etc.

Ms. Jones drove to her hometown for the weekend in Detroit, Michigan. She left at 8:00am and arrived at 12:30pm.

To find the time taken by her we use here subtraction  method for time.

Then the time taken by her= ( 12:30 - 8:00)= 4: 30hrs

Also, she left with $500. On her trip, she spent $135.55 on gas, she stopped for food and spent $24, she went to the movies and dinner while she was home and spent $75.85, she went to the zoo and spent $37, and she spent $74 in Uber rides.

She had $500

Total spent = ( $135.55+$24+$75.85+$37+$74)

                   = $346.4

Again to find that how much money lest to her we use subtraction method.

she has left over $(500- 346.4)

                           = 153.6

Hence, the time taken by her is 4:30 hours.

Total spent by her is $346.4

She has left over $153.6

To know more about subtraction

https://brainly.com/question/13378503

#SPJ1

true or false the decimalformat class is part of the java api so it is automatically available to your programs.

Answers

The statement is true. The DecimalFormat class is part of the Java API, specifically within java.text package, so it is automatically available to your programs. You can use it to format numbers in various ways, such as for displaying currency or percentages.

DecimalFormat is a concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features designed to make it possible to parse and format numbers in any locale, including support for Western, Arabic, and Indic digits. It also supports different kinds of numbers, including integers (123), fixed-point numbers (123.4), scientific notation (1.23E4), percentages (12%), and currency amounts ($123). All of these can be localized.

To obtain a NumberFormat for a specific locale, including the default locale, call one of NumberFormat's factory methods, such as getInstance(). In general, do not call the DecimalFormat constructors directly, since the NumberFormat factory methods may return subclasses other than DecimalFormat. If you need to customize the format object, do something like this:

NumberFormat f = NumberFormat.getInstance(loc);

if (f instanceof DecimalFormat) {

    ((DecimalFormat) f).setDecimalSeparatorAlwaysShown(true);

}

A DecimalFormat comprises a pattern and a set of symbols. The pattern may be set directly using applyPattern(), or indirectly using the API methods. The symbols are stored in a DecimalFormatSymbols object. When using the NumberFormat factory methods, the pattern and symbols are read from localized ResourceBundles

learn more about The DecimalFormat class is part of the Java API,

https://brainly.com/question/13261452

#SPJ11

True. The Decimal Format class is a part of the Java API and is included in the java.text package.

It is automatically available to Java programs without the need for any additional installations or imports.

The Decimal Format class is part of the Java API, and it is automatically available to your programs.

The Java API is a collection of pre-written classes, methods, and interfaces that are part of the Java Development Kit (JDK).

These classes and methods provide a wide range of functionalities that can be utilized by Java developers to build robust applications.
The Decimal Format class, specifically, is a subclass of the Number Format class and is used to format decimal numbers according to a specific pattern.

The class provides methods to format and parse decimal numbers and can be used to specify the number of digits after the decimal point, the use of a thousand separator, and the currency symbol.
The Decimal Format class in your Java program, you simply need to import the class using the import statement, and then create an instance of the class.

For example:
import java. text. Decimal Format.
public class MyClass

{
public static void main (String [] args) {
Decimal Format df = new Decimal Format("#.00");
double num = 1234.5678
System.out.println(df.format(num));
}
}
The Decimal Format class using the import statement, and then create an instance of the class called df.

We then use the format method of the class to format the decimal number 1234.5678 with two decimal places.
The Decimal Format class is an essential part of the Java API and is automatically available to your programs.

Its inclusion in the Java API makes it easier for Java developers to format decimal numbers in their applications.

For similar questions on Decimal

https://brainly.com/question/28393353

#SPJ11

Solve the system of equations:
y= 2x - 2
y= x2 - x-6
O A. (-1,-5) and (4,2)
O B. (0, -2) and (2, 2)
O C. (-1,-4) and (4, 6)
D. (-2,0) and (3,0)

Answers

Answer:

C)  (-1, -4) and (4, 6)

Step-by-step explanation:

\(\textsf{Equation 1}:y=2x-2\)

\(\textsf{Equation 2}:y=x^2-x-6\)

Substitute Equation 1 into Equation 2 and solve for x:

\(\implies 2x-2=x^2-x-6\)

\(\implies x^2-3x-4=0\)

Find two numbers that multiply to -4 and sum to -3:  -4 and 1

Rewrite the middle term as the sum of these two numbers:

\(\implies x^2-4x+x-4=0\)

Factorize the first two terms and the last two terms separately:

\(\implies x(x-4)+1(x-4)=0\)

Factor out the common term \((x-4)\):

\(\implies (x+1)(x-4)=0\)

\(\implies (x+1)=0 \implies x=-1\)

\(\implies (x-4)=0 \implies x=4\)

Substitute the found values of x into Equation 1 and solve for y:

\(x=-1 \implies y=2(-1)-2=-4\)

\(x=4 \implies y=2(4)-2=6\)

Therefore, the solution to the system of equations is:

(-1, -4) and (4, 6)

Nila uses the equation c=8h to figure out the total amount c she should charge a customer if she babysits for h hours.
Part A. Find the constant of proportionality and explain what it means.

Part B. Nila decides to increase the rate she charges customers by $2 per hour. What equation should she now use to determine how much to charge her customers? Explain.

PLS HELP!!!

Answers

Answer:

c = 10h

Step-by-step explanation:

c = 8h

Where,

c = Total amount she should charge a customer

h = Number of hours

8 = amount charged per hour of babysitting

A. 8 is the constant of proportionality and it means Nila charges $8 per hour of babysitting

B. If she decides to increase the rate she charges customers by $2 per hour, then the new equation she should use to determine how much to charge her customers is:

c = (8 + 2)h

c = 10h

Formulate and solve the following linear program: You are trying to create a budget to optimize the use of a portion of your disposable income. You have a maximum of $1,500 per month to be allocated to food, shelter, and entertainment. The amount spent on food and shelter combined must not exceed $1,100. The amount spent on shelter alone must not exceed $800. Entertainment cannot exceed $400 per month. Each dollar spent on food has a satisfaction value of 2, each dollar spent on shelter has a satisfaction value of 3, and each dollar spent on entertainment has a satisfaction value of 5. 1. Write the Objective Function and Constraints for this problem. 2. Assuming a linear relationship, use the Excel Solver to determine the optimal allocation of your funds. 3. Report the maximum value of the Objective function.

Answers

1. Objective Function and Constraints:

Maximize 2x1 + 3x2 + 5x3 subject to x1 + x2 + x3 ≤ 1500, x1 + x2 ≤ 1100, x2 ≤ 800, x3 ≤ 400.

2. Using Excel Solver, find the optimal allocation of funds.

3. The maximum value of the objective function is reported by Excel Solver.

We have,

Objective Function and Constraints:

Let:

x1 = amount spent on food

x2 = amount spent on shelter

x3 = amount spent on entertainment

Objective Function:

Maximize: 2x1 + 3x2 + 5x3 (since each dollar spent on food has a satisfaction value of 2, each dollar spent on shelter has a satisfaction value of 3, and each dollar spent on entertainment has a satisfaction value of 5)

Constraints:

Subject to:

x1 + x2 + x3 ≤ $1,500 (maximum disposable income)

x1 + x2 ≤ $1,100 (amount spent on food and shelter combined must not exceed $1,100)

x2 ≤ $800 (amount spent on shelter alone must not exceed $800)

x3 ≤ $400 (entertainment cannot exceed $400)

Using Excel Solver:

In Excel, set up a spreadsheet with the following columns:

Column A: Variable names (x1, x2, x3)

Column B: Objective function coefficients (2, 3, 5)

Column C: Constraints coefficients (1, 1, 1) for the first constraint (maximum disposable income)

Column D: Constraints coefficients (1, 1, 0) for the second constraint (amount spent on food and shelter combined)

Column E: Constraints coefficients (0, 1, 0) for the third constraint (amount spent on shelter alone)

Column F: Constraints coefficients (0, 0, 1) for the fourth constraint (entertainment limit)

Column G: Right-hand side values ($1,500, $1,100, $800, $400)

Apply the Excel Solver tool with the objective function and constraints to find the optimal allocation of funds.

Once the Excel Solver completes, it will report the maximum value of the objective function, which represents the optimal satisfaction value achieved within the given budget constraints.

Thus,

Objective Function and Constraints: Maximize 2x1 + 3x2 + 5x3 subject to x1 + x2 + x3 ≤ 1500, x1 + x2 ≤ 1100, x2 ≤ 800, x3 ≤ 400.

Using Excel Solver, find the optimal allocation of funds.

The maximum value of the objective function is reported by Excel Solver.

Learn more about Objective Functions and Constraints here:

https://brainly.com/question/28987013

#SPJ4

PLEASE ANSWER THIS!!

PLEASE ANSWER THIS!!

Answers

Answer:

161ft^2 is answer

Step-by-step explanation:

area of rectangle = l ×b

=7ft ×23ft

=161ft^2

HELPPPPP ME PLEASEE

HELPPPPP ME PLEASEE

Answers

Answer: <

6.12 x 10^4 < 612,000

Step-by-step explanation:

Answer:

<

Step-by-step explanation:

because 6.12 × 10^4 = 61,200 and 612,000 is obviously a way bigger number, so greater than symbol is the correct answer.

A store purchases baseball hats from two different manufacturers in 3 different colors, summarized
below. One hat is chosen at random. Give your answer as a decimal out to at least 4 places.
Black Blue Red Total
Manufacturer A 23 21 29 73
Manufacturer B 27 17 10 54
Total 50 38 39 127
х
a) Find the probability that the hat was was Black or was from Manufacturer A. 0.3150
O 0.78740157480315
b) Find P(Red).
c) Find P(Manufacturer B and Red),
d) Find P(Manufacturer B or Red).

A store purchases baseball hats from two different manufacturers in 3 different colors, summarizedbelow.

Answers

Answer:

See below

Step-by-step explanation:

a)

P(A or Black) = (73 + 27)/127 = 100/127 =  0.7874015748

b)  

P(Red) = red/total = 39/127 = 0.30708661417

c)

P(Manufacturer B and Red) = (B and red)/total = 10/ 127 = 0.0787401575

d)

P(Manufacturer B or Red) = (B or red)/total = (54 + 29)/127 = 0.65354330708

Calculate the areas and perimeters of each shapes, start bu calculating any missing sides.

Calculate the areas and perimeters of each shapes, start bu calculating any missing sides.

Answers

Answer:

Perimeter of A = 46cm

Area of A = 112cm^2

Perimeter of B = 61cm

Area of B = 118cm^2

Step-by-step explanation:

So there are two shapes. I divided one into 2 parts ( shape A ) . And the other into three ( shape B

Shape A:

PERIMETER = S + S +S +S + S + S + S + S ( THE SHAPE HAS 8 SIDES )

= 5 + 5 + 20 + 11 + 3 + 3 + 5 + 4 ( THIS INCLUDES THE MISSING SIDES )

= 46 CM

AREA- To find the area you divide the shape

Part 1 - 4* 3 = 12cm^2 Part 2 - 20 * 5 = 100cm^2

Final part ( add part a and b ) - 12 + 100 = 112cm^2

Shape B:

PERIMETER = S + S + S + S + S ..,........ (UNTIL YOU GET TO 12 SIDES PROVIDED THE SHAPE HAS 12 SIDES :) )

= 12 + 2 + 2 + 4 + 5 + 4 + 4 + 4 + 6 + 6 + 12 + 5

= 61 CM

AREA- To find the area you divide the shape

Part 1 - 12* 2 = 24cm^2 Part 2 - 4 * 3 = 12cm^2 Part 3 - 12 * 6 = 72 cm ^2

Final part ( add part a, b and c ) - 12 + 72 + 24 = 108cm^2

FOR MORE UNDERSTANDING PLEASE OPEN THE ATTACHMENT BELOW OR ASK ANY QUESTION.

HOPE THIS HELPED

Calculate the areas and perimeters of each shapes, start bu calculating any missing sides.

What is the value of x?
(4x + 15)
11xº

O A. X = 5
O B. X = 11
O C. X = 59
O D. X = 121

What is the value of x?(4x + 15)11xO A. X = 5O B. X = 11O C. X = 59O D. X = 121

Answers

Step-by-step explanation:

(4x+ 15)° + 11x° = 180° ( linear pair )

4x + 15 +11x = 180

15 x + 15 = 180

15x = 180-15

15x= 165

x= 165/15

x= 11

Please help!!! I’ll mark brainliest!!

Please help!!! Ill mark brainliest!!

Answers

Answer:

9:50

Step-by-step explanation:

To get the ratio, we can just simplify a fraction down to 1.

Since there's 18 dimes, and 100 coins in total, we'll start with the fraction

18/100

Put 18/100 in simplest form

9/50

Then Turn the fraction into a ratio

9/50 -> 9:50

For every 9 dimes there's 50 coins.

I hope this helped.

(Simplified to 1, is 1/5.56 or 1:5.56)

Solve for x Show your work

Solve for x Show your work

Answers

Answer:

x = 12

Step-by-step explanation:

To solve this and show your work, you have to start of with the equation (3x - 6) = 30.

You then have to add 6 to both sides like this:

\((3x - 6) = 30 \\ \: \: \: \: \: \: \: \: \: \: + 6 \: \: \: \: \: + 6 \)

So then the 6 is cancelled out, and you are left with

3x = 36.

Now you just have to divide both sides by 3 like this:

\( \frac{3x}{3} = \frac{36}{3} \)

Which cancels 3 out, and you are left with

x = 12.

Grant has 6 red socks, 4 blue socks, 8
green socks, and 2 yellow socks in a
drawer. He will randomly select two socks
from the drawer one at a time without
replacement. What is the probability that
Grant will select a blue sock and then a
green sock?
F
25
50
95
95

Grant has 6 red socks, 4 blue socks, 8green socks, and 2 yellow socks in adrawer. He will randomly select

Answers

The answer to your question in the gray sock is 95 I hope this helps

The probability that Grant will select a blue sock and then a green sock = \(\frac{8}{95}\).

What is probability?

Probability is the branch of mathematics concerning numerical descriptions of how likely an event is to occur, or how likely it is that a proposition is true. The probability of an event is a number between 0 and 1.

The probability that Grant will select a blue sock and a green sock =

= Probability of choosing a blue sock * Probability of choosing a green sock out of the remaining socks

=  \(\frac{Number\ of\ blue\ socks}{Total\ number\ of\ socks} * \frac{Number\ of\ green\ socks\ out\ of\ remaining\ socks }{Total\ number\ of\ remaining\ socks}\)

= \(\frac{4}{20} * \frac{8}{19} = \frac{8}{95}\)

Learn more about probability here

https://brainly.com/question/11234923

#SPJ2

What the slope of y=-1/4x +9?

Answers

Answer:

-1/4

Step-by-step explanation:

The equation "y = mx + b" defines the slope, where 'b' is the y-intercept and 'm' is the slope. You can easily find the slope by locating the 'x', which is always slope in slope-intercept form (y = mx + b)

is a fraction a term? If it's not a term, why is it that we can apply the distributive property to it? the distributive property only works for either terms, or addition and subtraction. a fraction is technically division, so why does it work? Please help!!!!! ​

Answers

No, a fraction is not a term. The distributive property can be applied to fractions because it is a general mathematical principle.

A fraction is not considered a term in the traditional sense. It is a mathematical expression that represents division. However, the distributive property can still be applied to fractions because the property itself is a fundamental rule of arithmetic that extends beyond specific types of expressions.

The distributive property states that for any real numbers a, b, and c:

a × (b + c) = (a × b) + (a × c).

When working with fractions, we can apply the distributive property as follows:

Let's consider the expression: a × (b/c).

We can rewrite this as: (a × b)/c.

Now, let's distribute the 'a' to 'b' and 'c':

(a × b)/c = (a/c) × b.

In this step, we applied the distributive property to the fraction (a/c) by treating it as a whole.

Although fractions represent division, we can still use the distributive property because it is a general mathematical principle that allows for manipulating expressions involving addition, subtraction, multiplication, and division.

For more such question on fraction

https://brainly.com/question/17220365

#SPJ8

2.5g + 3.14g + 6g + 12.32g

Answers

Answer:

23.96g

Step-by-step explanation:

Make sure to thank me!!!

Emma needs to divide 7 by 1/2. Which strategy can Emma use to get the answer?

Answers

Answer:

14

Step-by-step explanation:

Convert the fraction into a decimal

1/2 = 0.5

Divide

7/0.5 = 14

Scarlett invested $600 in a annual interest rate of 1.8%. She made no deposits or with drawls on the account for 3 years. Find, to the nearest cent, her balance after 3 years

Answers

Scarlett's balance after 3 years is $658.97 to the nearest cent.

The formula to find the balance after t years when principal amount P is invested at an annual interest rate r compounded n times per year is given by:

A = P(1 + r/n)^(n*t)

Here, P = $600, r = 1.8% = 0.018, n = 1 (since interest is compounded annually), and t = 3. Substituting these values in the above formula, we get:

A = 600(1 + 0.018/1)^(1*3) = $658.97

Therefore, Scarlett's balance after 3 years is $658.97 to the nearest cent.

Know more about Principal amount here:

https://brainly.com/question/30163719

#SPJ11

Pleaseee helpppTyler left his house and drove to the store. He stopped and went inside. From there, he drove in the same direction until he got to the bank. He stopped and went inside the bank. Then he drove home. The graph below shows the number of blocks away from home Tyler is x minutes after he left his house, until he got back home.

Pleaseee helpppTyler left his house and drove to the store. He stopped and went inside. From there, he

Answers

Answer:

4 minutes

Hope this helps!!! :)

In a subsurface system, we have reverse faulting, a pressure is identified at the depth of
2,000 ft with A = 0.82. Given this information, calculate: the total maximum horizontal stress
Shmaz given friction angle 4 = 30°.

Answers

To calculate the total maximum horizontal stress (Shmax) in a subsurface system with reverse faulting, we can use the formula:

Shmax = P / A

where P is the pressure at the given depth and A is the stress ratio. Given: Depth = 2,000 ft, A = 0.8, Friction angle (φ) = 30°

First, we need to calculate the vertical stress (σv) at the given depth using the equation:

σv = ρ g  h

where ρ is the unit weight of the overlying rock, g is the acceleration due to gravity, and h is the depth.

Next, we can calculate the effective stress (σ') using the equation:

σ' = σv - Pp

where Pp is the pore pressure.

Assuming the pore pressure is negligible, σ' is approximately equal to σv.

Finally, we can calculate Shmax using the formula:

Shmax = σ' * (1 + sin φ) / (1 - sin φ)

Substituting the given values into the equations, we can calculate Shmax. However, the unit weight of the rock and the value of g are required to complete the calculation.

Learn more about horizontal stress (Shmax) here:

https://brainly.com/question/31642399

#SPJ11

assuming independence, what is the probability on a particular day that all machines will break down?

Answers

the probability that exactly one machine will break down on a given day = P(A) × P(B') + P(A') × P(B)= 0.044

Let A is the event that machine a will break down,

A' is the event that machine a will not break down,

B is the event that machine b will break down,

And, B' is the event that machine will not break down.

According to the question,

P(A) = 2%

⇒ P(A) = 0.02

P(A') = 1 - 0.02 = 0.98

Similarly, P(B) = 0.025

⇒ P(B') = 1 - 0.025 = 0.975

Thus, the probability that exactly one machine will break down on a given day = P(A) × P(B') + P(A') × P(B)

= 0.02 × 0.975 + 0.98 × 0.025

= 0.044

= 4.44 %

the complete question is

A company has 2 photocopy machines. The probability that machine a will break down on a given day is 2%. The probability that machine b will break down is 2.5%. What is the probability that exactly one machine will break down on a given day?

learn more about of probability here

https://brainly.com/question/11886249

#SPJ4

a random sample of 39 students is taken. the population of students spends an average of $10.2 a day on dinner. the standard deviation is $1.4. what is the probability that the sample mean will be between $10 and $10.2?

Answers

The probability that the sample mean will be between $10 and $10.2 is approximately 0.3144 or 31.44%.

To calculate the probability that the sample mean will be between $10 and $10.2, we need to use the properties of the sampling distribution of the sample mean. Under certain assumptions (e.g., a large sample size or normality of the population distribution), the sampling distribution of the sample mean follows a normal distribution.

Given that the population mean is $10.2 and the population standard deviation is $1.4, we can use the Central Limit Theorem to approximate the distribution of the sample mean. The Central Limit Theorem states that for a sufficiently large sample size, the sampling distribution of the sample mean will be approximately normal, regardless of the shape of the population distribution.

In this case, the sample size is 39, which is considered reasonably large. Therefore, we can approximate the distribution of the sample mean as a normal distribution with a mean of $10.2 and a standard deviation of σ/√n, where σ is the population standard deviation and n is the sample size.

The standard deviation of the sample mean is calculated as follows:

Standard deviation of the sample mean = σ/√n = 1.4/√39 ≈ 0.224

To find the probability that the sample mean will be between $10 and $10.2, we need to calculate the z-scores for both values and then use the standard normal distribution (z-distribution) to find the probability.

The z-score for $10 is calculated as follows:

z1 = (10 - 10.2) / (0.224) ≈ -0.893

The z-score for $10.2 is calculated as follows:

z2 = (10.2 - 10.2) / (0.224) = 0

Now, we can use a standard normal distribution table, calculator, or software to find the probabilities associated with these z-scores.

The probability that the sample mean will be between $10 and $10.2 is equal to the probability of having a z-score between -0.893 and 0.

Using a standard normal distribution table or calculator, the probability can be calculated as follows:

P(-0.893 ≤ Z ≤ 0) ≈ P(Z ≤ 0) - P(Z ≤ -0.893)

Looking up the values in a standard normal distribution table or using a calculator, we find:

P(Z ≤ 0) ≈ 0.5 (probability of being less than or equal to the mean)
P(Z ≤ -0.893) ≈ 0.1856

Therefore,

P(-0.893 ≤ Z ≤ 0) ≈ 0.5 - 0.1856 ≈ 0.3144

Hence, the probability that the sample mean will be between $10 and $10.2 is approximately 0.3144 or 31.44%.

To know more probability click-
http://brainly.com/question/24756209
#SPJ11

find the two missing sides what is x and y

find the two missing sides what is x and y

Answers

Answer:

y=6 , X = 8.48 which is 6 root 2

URGENT PLEASE HELP WILL GIVE BRAINLIEST!!!!
b. The same manufacturer plans to package the ball along with some other gear kids can use to get started playing basketball. The box that will hold everything will be 10 inches long, 12 inches wide, and 10 inches tall. The packaging department needs to know how many square inches of cardboard will be needed to create each box. How much will it need per box?

Answers

Answer:

1200

Step-by-step explanation:

10 x 10 x 12

10x10 +100x 12

Answer:

1200 cubic inches.

Step-by-step explanation:

please help me with that question​

please help me with that question

Answers

Answer:

Step-by-step explanation:

at the end of;                Karabo                         John

1st hour                           80km                          0km(bcause he hasn't started)

2nd hour                       160 km                         100km

3rd hour                        240 km                         200km

4th hour                        300 km                         300km

now I'm not sure whether we should consider the time period after the starting time of karabo, or that of John (they have a gap of one hour u know..)

so, from the starting time of karabo, it takes 4 hours, and from the starting time of John it's 3hours. (Because John started 1 hour later)

Other Questions
models of strategic collaboration include all of the following except: group of answer choices lean experimentation. crowd-based collaborations. strategic investments. strategic partnerships. I don t understand this form questions using inverted word order. put the subject at the end.Use the words: clase, dos, la, a, termina, las 1245 divided by 3 only remainder no decimals Discuss the role of the viewer for different types of sculpture, including relief, freestanding, installation, and kinetic. What is the role of the viewer for relief sculpture on buildings Each element can be indentified by the number of _______ found in its nucleus, which also equals the elements _______ _______. If the interest rate on the euro is 12 percent, the expected effective yield from a euro-denominated deposit is:a.15.36 percent.b.15.70 percent.c.12.00 percent.d.14.35 percent.e.none of the above 1. ChooseONE of the following stories from Unit 4:a. "A Sound of Thunder" by Ray Bradbury (Unit 4, Lesson 2)b. "Nethergrave" by Gloria Skurzynski (Unit 4, Lesson 3)2. Use the outline below to analyze the following literary element:story's development:a. Characterizationb. ConflictC. Theme An interest in the plans for the economic development of the region shouldbe displayed by young people.What is a parallel sentence to this Boo escaping from monster inc would create bad publicity for the company how would that impact the business? the two moles of acetyl chloride was mixed with two moles of dimethylamine. after the reaction is complete, what species can be found in the mixture? draw only the organic structures (i.e., omit inorganic ions). show charges and draw any hydrogens on the oxygen or hydrogen atoms . In order to ingratiate himself with voters, the mayor of Gotham City decides to lower the price of taxi rides. Assume, for simplicity, that all taxi rides are the same distance and therefore cost the same. The accompanying table shows the demand and the supply schedules for taxi rides.QUANTITY OF RIDES (MILLIONS PER YEAR)Fare (per ride) Quantity Demanded Quantity supplied$ 7.00 10 12$ 6.50 11 11$6.00 12 10$5.50 13 9$5.00 14 8$4.50 15 7Suppose that the stock market crashes and, as a result, people in Gotham City are poorer. This reduces the quantity of taxi rides demanded by 6 million rides per year at any given price. What effect will the mayor's new policy have now? Illustrate with diagram. Simplify the expression: 7h+2+4 for exercise, mae jogs miles then walks an additional to cool down. if her jogging speed is miles per hour faster than her walking speed and her total exercise time is , what is her walking speed? consider the regression models described in example 8.4 . a. graph the response function associated with eq. (8.10) . b. graph the response function associated with eq. (8.11) . Please answer the following question thoroughlyMacdonalds, or Burger King? A total of x dollars was donated to 3 charities. Each charity received $250. Write anequation that can be used to find the total amount of money donated. que pasa si gasto todos mis puntos ? ( tonto lo se XD ) If one of your immune cells undergoes phagocytosis of a harmful bacterium or virus-infected cell in your body, if it is a healthy immune cell, it will hopefully fuse the invader with its The volume of a right cone is 2325 units33 . If its radius measures 15 units, find its height.