If John Carlo has 4 times as many nickels as quarters and they have a combined value of 270 cents, how many of each coin does he have?

Answers

Answer 1

There 6 quarters and 24 nickels of each coins that John Carlo has.

How to calculate for the number of each coins.

There are 5 cents in a nickel and 25 cents in a quarter. Let us represent the number of quarters as x so that the number of nickels that John Carlo has will be 4x.

Thus, 4x(5 cents) + x(25 cents) = 270 cents

20x cents + 25x cents = 270 cents

45x cents = 270 cents

divide through by 45

x = 270/45

x = 6

and thus there are 4(6) = 24 nickels.

Therefore, John Carlo has 6 quarters and 24 nickels each of coins.

Know more about nickels and quarters here:https://brainly.com/question/17127685

#SPJ1


Related Questions

What are the zeros of h (x) = 2x2 – 8x – 10?

Answers

Answer:

x=5, -1

Step-by-step explanation:

set the equation equal to 0: 2x^2-8x-10=0

divide both sides by 2 to get x^2-4x-5=0

next factor your new equation to get (x+1)(x-5)

set those equal to zero

now you have x+1=0 and x-5=0

finally, solve for x by subtracting 1 and adding 5

now you have your answer x= 5 and -1

117. State whether the answer is greater than i or less than ​

117. State whether the answer is greater than i or less than

Answers

Hope this might help u
117. State whether the answer is greater than i or less than

Answer:

1) greater than

2) less than

3) greater than

4)less than

5) greater than

6) greater than

Step-by-step explanation:

When the null hypothesis has been true but the sample information has resulted in the rejection?

Answers

The null hypothesis has been true but the sample information has resulted in the rejection, when the Type I error has been made

The null hypothesis is that two possibilities are the same. The null hypothesis is that the observed difference is due to chance alone.

A type I error occurs if an investigator rejects a null hypothesis that is actually true in the population.
Hence, the null hypothesis has been true but the sample information has resulted in the rejection, when the Type I error has been made

Learn more about The null hypothesis here

brainly.com/question/19263925

#SPJ4

4) If f(x)= x/4 and g(x) = 3/2, Find the End Behavior of (f - g) (x).

Answers

Answer: The end behavior of (f - g)(x) can be found by analyzing the end behavior of f(x) and g(x).

As x approaches infinity, both f(x) and g(x) approach some constant value. Specifically, f(x) approaches infinity/4 = 0 and g(x) approaches 3/2.

Therefore, the end behavior of (f - g)(x) as x approaches infinity is:

(f - g)(x) = f(x) - g(x)

(f - g)(x) = x/4 - 3/2

(f - g)(x) = (x - 6)/4

As x approaches infinity, the numerator of (f - g)(x) (x - 6) will approach infinity, while the denominator (4) will remain constant. Therefore, the end behavior of (f - g)(x) as x approaches infinity is:

(f - g)(x) approaches infinity/4 = 0

Similarly, as x approaches negative infinity, both f(x) and g(x) approach some constant value. Specifically, f(x) approaches negative infinity/4 = 0 and g(x) approaches 3/2.

Therefore, the end behavior of (f - g)(x) as x approaches negative infinity is:

(f - g)(x) = f(x) - g(x)

(f - g)(x) = x/4 - 3/2

(f - g)(x) = (x - 6)/4

As x approaches negative infinity, the numerator of (f - g)(x) (x - 6) will approach negative infinity, while the denominator (4) will remain constant. Therefore, the end behavior of (f - g)(x) as x approaches negative infinity is:

(f - g)(x) approaches negative infinity/4 = 0

So, the end behavior of (f - g)(x) is that it approaches 0 as x approaches either infinity or negative infinity.

Step-by-step explanation:

Find the monomial if the expression is the cube of that monomial.
−0.001a

Answers

The monomial of the expression given the cube of that monomial -0.001a^(3n+3) is; x = (-1/10)a^(n + 1)

How to find the monomial of a polynomial expression?

A monomial is defined as a polynomial, that has only one term. A monomial is also defined as an algebraic expression possessing a single term but can as well possess multiple variables as well as a higher degree also.

We are given the expression;

x³ = -0.001a^(3n + 3)

Now, -0.001 can also be expressed as -1/10³. Thus, we have;

x³ = (-1/10³)a^(3n + 3)

Factorizing the exponent gives;

x³ = (-1/10³)a^[3(n + 1)]

Since the terms are both cubed, then we can write as;

x³ = [(-1/10)a^(n + 1)]^3

Taking the cube root of both sides gives us;

x = (-1/10)a^(n + 1)

Read more about Monomials at; https://brainly.com/question/102541

#SPJ1

The complete question is;

Find the monomial if the expression is the cube of that monomial -0.001a^(3n+3)

What method can be used?

What method can be used?

Answers

Answer:

'''

Step-by-step explanation:

A circle made up of two semi circles.
If the sphere shown above has a radius of 5 units, then what is the approximate volume of the sphere?
A.
208.33
cubic units
B.
83.33
cubic units
C.
166.67
cubic units
D.
100
cubic units

Answers

Answer:

option C

Explanation:

The sphere can be thought of as two hemispheres joined together. The formula for the volume of a sphere is:

V = (4/3)πr^3

where r is the radius of the sphere.

Since we are given that the radius of the sphere is 5 units, we can substitute this value into the formula:

V = (4/3)π(5^3) = (4/3)π(125) = 166.67 cubic units

Therefore, the approximate volume of the sphere is 166.67 cubic units, which is option C.

Declaring variables - Declare two integer variables x and y, - Assign them any values. - Print addition/subtraction/multiplication and division of these two variables on to the screen
Submission Task (- Grade 1%) Follow the same steps asin Exercise 2, but change the step 2 to ask the user for input forthese values by using Scanner class.

Answers

Two integer variables x and y, prompts the user to enter values for them using the Scanner class, and performs addition, subtraction, multiplication, and division operations on those variables:

import java.util.Scanner;

public class VariableOperations {

   public static void main(String[] args) {

       Scanner scanner = new Scanner(System.in);

       System.out.print("Enter the value for x: ");

       int x = scanner.nextInt();

      System.out.print("Enter the value for y: ");

       int y = scanner.nextInt();

       // Addition

       int addition = x + y;

       System.out.println("Addition: " + addition);

       // Subtraction

       int subtraction = x - y;

       System.out.println("Subtraction: " + subtraction);

       // Multiplication

       int multiplication = x * y;

       System.out.println("Multiplication: " + multiplication);

       // Division

       if (y != 0) {

           double division = (double) x / y;

           System.out.println("Division: " + division);

       } else {

           System.out.println("Cannot divide by zero.");

       }

   }

}

This code prompts the user to enter values for x and y, performs the four basic arithmetic operations, and displays the results on the screen.

Learn more about variables here:

https://brainly.com/question/29696241

#SPJ11



Which answer choice best describes the domain and range of the function for this

situation?

A.

Domain: All real numbers greater than or equal to 0 and less than or equal

to 100

Range: All real numbers greater than or equal to 0 and less than or equal

to 50

B.

Domain: (-2)

Range: (100)

Domain: All real numbers greater than or equal to 0 and less than or equal

to 50

Range: All real numbers greater than or equal to 0 and less than or equal

to 100

D.

Domain: (100)

Range:{-2)

Answers

D for balls

Step-by-step explanation:

trust the process

Homework Progress
0
Find the nth term of the following sequence: 4 7 12 19 28

Answers

Answer:

n²+3

Explanation:

The differences between the terms are not the same, so this is not "linear". Knowing that the sequence may have started with a 1, you can try subtracting the first number with a number to get 1, and use that number to subtract the rest.

4 - 3 = 1
7 - 3 = 4
12 - 3 = 9
19 - 3 = 16
28 - 3 = 25

In this case, subtracting 3 to all the numbers gave us perfect squares! So this means the nth term has to do with squaring the number and adding three afterward! This can be checked.

√1 = 1
√4 = 2
√9 = 3
√16 = 4
√25 = 5

As we found the values of these terms by subtracting three first and then finding its square root, the nth term will be the opposite; squaring and then adding three! Again, this can be checked!

1² + 3 = 4
2² + 3 = 7
3² + 3 = 12
4² + 3 = 19
5² + 3 = 28

Hope this helps !! :D

Help my friend out?

Help my friend out?

Answers

Answer:

13. -2

14. 0

15. 2

16. 0

Step-by-step explanation:

Since the function is originally f(x), you go to wherever the x value is and see what the y value is.

So...

f(2) means go to x = 2 and see that y = -2

13. -2
14. 0
15. 2
16. 0
hope this helps:)

someone please help me

someone please help me

Answers

Answer:

Option B  (2 in the blank)

Step-by-step explanation:

Given function:

f(x) = 2x² - 5x + 7

The leading term is 2x², the leading coefficient is 2, this is positive.

The graph opens upward.

Correct option is B.

False, because 2 > 0

Option B is correct trust me my guy

use the binomial theorem to find the binomial expansion of the given expression. (2x-3y)^5.
show work

Answers

Answer:

(a + b)^n = C(n, 0)a^n b^0 + C(n, 1)a^(n-1) b^1 + C(n, 2)a^(n-2) b^2 + ... + C(n, n-1)a^1 b^(n-1) + C(n, n)a^0 b^n

The binomial expansion of (2x - 3y)^5 is:

32x^5 - 240x^4y + 720x^3y^2 - 1080x^2y^3 + 810xy^4 - 243y^5

The binomial expansion of the given expression is 32x⁵+240x⁴y+720x³y²+1080x²y³+810xy⁴+243y⁵.

The given expression is (2x-3y)⁵.

In elementary algebra, the binomial theorem describes the algebraic expansion of powers of a binomial.

(2x)⁵+⁵c₁(2x)⁴(3y)¹+⁵C₂(2x)³(3y)²+⁵C₃(2x)²(3y)³+⁵C₄(2x)(3y)⁴+⁵C₅(3y)⁵

= 32x⁵+5(16x⁴)(3y)+10.(8x³)(9y²)+10(4x²)(27y³)+5(2x)(81y⁴)+243y⁵

= 32x⁵+240x⁴y+720x³y²+1080x²y³+810xy⁴+243y⁵

Therefore, the binomial expansion of the given expression is 32x⁵+240x⁴y+720x³y²+1080x²y³+810xy⁴+243y⁵.

To learn more about the binomial expansion visit:

https://brainly.com/question/31363254.

#SPJ2

find the length of the curve. r(t) = 3t i + 4t3/2 j + 3t2 k, 0 ≤ t ≤ 1

Answers

The length of the curve defined by the vector function r(t) = 3t i + 4t^(3/2) j + 3t^2 k, where 0 ≤ t ≤ 1, can be found using the formula for arc length:

L =

∫₀¹ √[dx/dt² + dy/dt² + dz/dt²] dt

.

To find the length of the curve, we use the formula for arc length, which involves taking the integral of the square root of the sum of the squares of the derivatives of each component of the vector function with respect to t.

For the given vector function r(t) = 3t i + 4t^(3/2) j + 3t^2 k, we differentiate each component with respect to t:

dx/dt = 3,

dy/dt = (4/2)√t = 2√t,

dz/dt = 6t.

Substituting these derivatives into the arc length formula, we have:

L =

∫₀¹ √[dx/dt² + dy/dt² + dz/dt²] dt

= ∫₀¹ √[(3)² + (2√t)² + (6t)²] dt

= ∫₀¹ √[9 + 4t + 36t²] dt

= ∫₀¹ √(36t² + 4t + 9) dt.

To evaluate this integral, we can use techniques such as substitution or other methods of integration. Once the integral is evaluated, we obtain the length L of the curve between t = 0 and t = 1.

Note: The provided solution sets up the integral for finding the length of the curve, but the actual evaluation of the integral involves further mathematical operations.

To learn more about

length of Curve

brainly.com/question/31376454

#SPJ11

Which of the following describes the solution to the equation c²+2c-4-1-2c? O-5 is an extraneous solution, and 1 is a true solution. O-5 is a true solution, and 1 is an extraneous solution. O Both -5 and 1 are true solutions. O Both -5 and 1 are extraneous solutions.​

Answers

Both -5 and 1 are extraneous solution to the equation

What is quadratic equation?

A quadratic equation is a second-order polynomial equation in a single variable x ax2+bx+c=0. with a ≠ 0 . Because it is a second-order polynomial equation, the fundamental theorem of algebra guarantees that it has at least one solution. The solution may be real or complex.

c²+2c-4-1-2c = 0

c²+2c-2c -4-1 = 0

c²-5 = 0

Therefore both -5 and 1 are extraneous solution in the equation.

learn more about quadratic equation from

https://brainly.com/question/1214333

#SPJ1

14. Write the ratio 15:5 with second term 1.
a. 10:1
b. 3:1
C.
11:1
d. 5:1

Answers

Answer:

your answer would be b

Step-by-step explanation:

if you divide each side by 5 you get

15/5:5/5

3:1

hope this helps! have a nice day!

B

5/1 = 1
15/5= 3

So 3:1

what is the greatest common factor of 24, 56, and 36?

Answers

Answer: 4

Step-by-step explanation:

I need help with geometry and help learning it

I need help with geometry and help learning it

Answers

Answer:

Option (2)

Step-by-step explanation:

HL theorem for congruence states that if hypotenuse and one leg of one right triangle are congruent to the corresponding sides of the of the right triangle, both the triangles will be congruent.

By this theorem,

ΔACB ≅ ΔFED

If AB ≅ DF [Hypotenuse]

AC ≅ EF [Leg]

By these properties,

AC = EF = 12

Or BC = DF = 28

Therefore, Option (2) will be the correct option.

Miss Garry played the Game of Life during Spring Break and kept track of the results from all the times she spun the wheel. During the game, she spun the wheel 80 times and the spinner landed on the number three 25 times. What is the experimental probability of spinning a three?

Answers

The probability in faction form would be 25/80 simplified would be 5/16 chance of spinning a 3. The decimal form would be a 0.3125 chance in spinning a 3

Answer:

it would be a 10% chance because think about it you have ten numbers so with each number there is a 10% chance of landing on it.

there is a 25% chance that a customer who purchases milk will also purchase bread. the probability of a milk purchase is 70% and the probability of a bread purchase is 50%. what is the probability that a customer will purchase bread given that he/she buys milk?

Answers

Answer:

If there is a 25% chance that a customer who purchases milk will also purchase bread. the probability of a milk purchase is 70%.  the probability that a customer will purchase bread given that they purchase milk is 36%.

How to find the probability?

Using this formula to find the probability that a customer will purchase bread given that they purchase milk

P(B | M) = P(M / B) / P(M)

Let plug in the formula

P(B | M) = 0.25 / 0.70

P(B | M) = 0.3571 ×100

P(B | M) = 36% (approximately)

Therefore the probability is 36%.

Learn more about probability here: brainly.com/question/24756209

#SPJ1

There's a room, the height is 12, length is 14, and width is 10. What is the total area of the 4 walls?

Answers

Answer:

Hello Everybody Love Pizza

Step-by-step explanation:

A box contains three types of chocolates. Each type has 6 pieces. what is the probability that the chocolate selected at random will be of type first ?​

Answers

The probability of selecting chocolate of the first type at random is 1/3.

Since there are three types of chocolates with 6 pieces each, there are a total of 18 chocolates in the box.

The probability of selecting chocolate of the first type is the number of chocolates of the first type divided by the total number of chocolates in the box.

Since there are 6 chocolates of the first type, the probability of selecting a chocolate of the first type is:

Probability = (Number of chocolates of the first type) / (Total number of chocolates)

= 6 / 18

= 1/3

Therefore, the probability of selecting chocolate of the first type at random is 1/3.

To learn more about probability visit: https://brainly.com/question/30034780

#SPJ11

As Felicia gets on the freeway to drive to her cousin's house, she notices that she is a little low on
gas. There is a gas station at the exit she normally takes, and she wonders if she will have to get
gas before then. She normally sets her cruise control at the speed limit of 70mph and the freeway
portion of the drive takes about an hour and 15 minutes. Her car gets about 30 miles per gallon
on the freeway, and gas costs $3.50 per gallon.
a. Describe an estimate that Felicia might do in her head while driving to decide how many
gallons of gas she needs to make it to the gas station at the other end.

Answers

A. To estimate the amount of gas she needs, Felicia calculates the distance traveled at 70 mph for 1.25 hours. She might calculate
70⋅1.25=70+0.25⋅70=70+17.5=87.5 miles.

Since 1 gallon of gas will take her 30 miles, 3 gallons of gas will take her 90 miles, a little more than she needs. So she might figure that 3 gallons is enough.

Or, since she is driving, she might not feel like distracting herself by calculating 0.25⋅70 mentally, so she might replace 70 with 80, figuring that that will give her a larger distance than she needs. She calculates
80⋅1.25=80+14⋅80=100.

So at 30 miles per gallon, 313 gallons will get her further than she needs to go, so should be enough to get her to the gas station.

B. Since Felicia pays $3.50 for one gallon of gas, and one gallon of gas takes her 30 miles, it costs her $3.50 to travel 30 miles.

$3.5030 miles≈$0.121 mile, meaning it costs Felicia 12 cents to travel each mile on the freeway.

Estimation involves using a convenient value, close to the actual value, for calculations; especially in the absence of a calculator. The estimated number of gallons she needs to get to the station is 3 gallons.

Given that:

\(Speed= 70mph\)

\(Time = 1.25hr\) ---- equivalent of 1hr 15mins

\(Rate = 30 m/gallon\)

First, she will need to estimate the distance she can cover using:

\(Distance= Speed \times Time\)

An estimate of the calculation is:

\(Distance= 70mph \times 1.5 = 105m\)

The number of gallons is then estimated as follows:

\(Gallons = D ista nce\div Rate\)

Because the estimated distance is 105 m; she can use 35 as an estimate the rate of miles per gallon; instead of 30

\(Gallons = 105m \div 35m/gallon\)

\(Gallons = 3gallon\)

So, the estimated number of gallons she needs is 3 gallons.

We can check if the estimate is true or close by calculating the actual values.

\(Distance= Speed \times Time\)

\(D i s t a n c e= 70mph \times 1.25hr=87.5m\)

\(Gallons = D ista nce\div Rate\)

\(Gallons = 87.5m \div 30m/gallon =2.92m\)

Hence, the estimated number of gallons she needs to get to the station is 3 gallons.

Read more about estimation at:

https://brainly.com/question/16099852

determine whether the statement is true or false. if f '(x) < 0 for 7 < x < 10, then f is decreasing on (7, 10).

Answers

The given statement is true. If f '(x) < 0 for 7 < x < 10, then f is decreasing on (7, 10).

If f '(x) < 0 for 7 < x < 10, then f is decreasing on (7, 10).

Declining Function: A function f is said to be decreasing on an interval I if for any two values x₁ and x₂ in I, with x₁ < x₂, then f (x₁) > f (x₂).

Since f '(x) < 0 for 7 < x < 10, it implies that the slope of the tangent line to the curve at every point in the interval (7,10) is negative. That means the graph of f is declining in that interval.

Therefore, the given statement is true. If f '(x) < 0 for 7 < x < 10, then f is decreasing on (7, 10).
This is because a negative first derivative, f'(x), indicates that the function is decreasing. The fact that f'(x) < 0 for all values of x in the given interval (7, 10) implies that the function is continuously decreasing throughout that interval.

To know more about the "decreasing" function: https://brainly.com/question/1503051

#SPJ11

pls help asap if you can!!!!!

pls help asap if you can!!!!!

Answers

Answer:

x = 24

Step-by-step explanation:

if a and b are parallel then

62 and 5x - 2 are same- side interior angles and sum to 180° , that is

5x - 2 + 62 = 180

5x + 60 = 180 ( subtract 60 from both sides )

5x = 120 ( divide both sides by 5 )

x = 24

thus for a to be parallel to b , then x = 24

PLEASE HELP!!!!THANK YOU,

Lauren earns $$9.25 an hour plus 3% commission on all
sales up to $2,000, and 5% commission on any sales
over $2,000. Use the table to determine how much she
earned based on her hours and sales.

PLEASE HELP!!!!THANK YOU,Lauren earns $$9.25 an hour plus 3% commission on allsales up to $2,000, and

Answers

Answers:

Monday = $65.25Tuesday = $101.10Wednesday = $0Thursday = $0Friday = $101.36Saturday = $105.80Sunday = $69.66Total for the week = $443.17

=========================================================

Explanation:

Since none of her sales exceed $2000, this means we can ignore the part that mentions "5% commission on any sales over $2,000".

h = number of hours

s = amount of sales between 0 and 2000

The equation is

m = 9.25h + 0.03s

where m is the amount of money made total for that day

9.25h is the amount of money at $9.25 an hour

The 0.03s represents 3% of the sales

-------------------------

For Monday, we plug in h = 6 hours and s = 325 dollars in sales

m = 9.25h + 0.03s

m = 9.25*6 + 0.03*325

m = 65.25

Lauren earned $65.25 on Monday

-------------------------

Repeat the same idea for Tuesday. This time we plug in h = 9 hours and her sales are s = 595 dollars.

m = 9.25h + 0.03s

m = 9.25*9 + 0.03*595

m = 101.10

She earned $101.10 for Tuesday.

Keep this process going until the entire week is filled out.

The answers are shown above to check your work.

-------------------------

Extra info:

If you added up the amounts earned for Monday through Sunday, then you should get $443.17 as the total amount earned for the entire week.

Divide this over the total number of hours worked (6+9+0+0+8+8+6 = 37 hours) and the effective hourly wage is 443.17/37 = 11.98 dollars an hour.

In a sense, the 3% commission adds an extra $2.73 an hour, since 11.98-9.25 = 2.73

Of course, this won't always be the case since the sales amount will fluctuate week to week. Also, there might be some cases in which Lauren is able to get over the $2000 sales threshold. But it gives a slight sense of what's going on.

Each square inch of your body has about 6. 5 × 10^2 pores. Suppose the top of your foot has an area of about 2. 0 × 10^1 in. ^2. About how many pores are on the top of your foot?

Answers

The number of pores that are on the top of your foot is approximately 13,000 pores on the top of your foot.

To find the number of pores on the top of your foot, we can multiply the area of the top of your foot in square inches by the number of pores per square inch.

The area of the top of your foot is 2.0 x 10^1 in^2 and each square inch of your body has about 6.5 x 10^2 pores. So, the number of pores on the top of your foot can be calculated as:

2.0 x 10^1 in^2 * 6.5 x 10^2 pores/in^2 = 130 x 10^2 pores = 13000 pores

So, there are approximately 13,000 pores on the top of your foot.

Learn more about unit conversions and dimensional analysis here: https://brainly.com/question/18559676

#SPJ4

Determine the Equation of the line Perpendicular to 2x -3y +5= 0 and passers through (-6,-3)

Answers

9514 1404 393

Answer:

  3x +2y +24 = 0

Step-by-step explanation:

In general, the equation of a perpendicular line can be found by swapping the coefficients of x and y, then negating one of them. The value of the constant will be what is required to make the line pass through the given point.

The equation will be of the form ...

  3x +2y +c = 0

At the given point, (x, y) = (-6, -3), we have ...

  3(-6) +2(-3) +c = 0 . . . . substitute the given point coordinates

  -18 -6 +c = 0 . . .simplify

  c = 24 . . . . . . . . add 24

The general-form equation for the line is ...

  3x +2y +24 = 0 . . . . . shown in blue in the attachment

Determine the Equation of the line Perpendicular to 2x -3y +5= 0 and passers through (-6,-3)

ANSWER CORRECTLY FOR BRAINLIEST!!!

ONLY:

8.

9.

10.

11.

ANSWER CORRECTLY FOR BRAINLIEST!!!ONLY:8.9.10.11.

Answers

Answer:

8. -1

6-9=-3

-3/3=-1

8/ 9 + 3X = 6 => X = -1
The number is -1

9/ 9(x-1) - 4(7-x) <= 10x - (2x + 1) - 6
=> 9x - 9 - 28 + 4x <= 10x - 2x - 1 - 6
=> 13x - 37 <= 8x - 7
=> 5x <= 30
=> x <= 30/5
=> x <= 6

Find the slope of the line passing through the points (-6, -5) and (4,4).

Answers

Answer:

9/10 or 0.9

Step-by-step explanation:

Slope of a line passing through two points (x1, y1) and (x2, y2) is given by
Slope m = rise/run

where
rise = y2 - y1
run = x2 - x1

Given points (- 6, - 5) and (4, 4),

rise = 4 - (-5) = 4 + 5 = 9

run = 4 - ( - 6) = 4 + 6 = 10

Slope = rise/run = 9/10 or 0.9

Other Questions
It takes 1 minute to bake 7 cookies. How manycookies could you bake in 2 minutes? Assume therelationship is directly proportional.cookiesAnswer What does m equal2m + 5 = 1 Which sentence describes this picture?OALa mujer est moliendo la fruta,.La mujer est sirviendo la fruta.OC. La mujer est sazonando la fruta.OD. La mujer est decorando la fruta. ake is writing a cover letter for a job. Which of the following would it be best for him to leave out? His past related experience. His height and weight. His political views. What his favourite film is. Why he is suitable for the job. State whether the following are true or false;a) 0.2 when expressed as a percentage is 2%.b) 25% of 80 is 20.c) 33 1/3 % of 84 is 28mathematics Economics :)The Fed sets policy at the ___ meetingsWhat was the importance of the Supreme Court case Kelo v. New London (2005)?Multiple Choice answers are provided below. Thanks! Esto es una divisin por favor ayuda If a politician suggested that Social Security benefits be means-tested, which of the following approaches is that politician suggesting?extending the base of taxable wagesraising the retirement agelowering benefits for all recipientslowering benefits for higher-income groups What is 3rd binomial formula? What is the solution to the equation 3x+4+3/2x+8 = 0?Ox=-12Ox= -4x = 4O x = 12 describe the object you find hidden somewhere outdoor Noah is a chef at a small restaurant. He can quickly chop vegetables into tiny, even pieces without cutting himself. What skill does Noah have? A. duality B. austerity C. persistence D. dexterity Compare the solubility of silver chloride in each of the following aqueous solutions: a. 0.10 M AgNO3 More soluble than in pure water. b. 0.10 M NaCI Similar solubility as in pure water c. 0.10 M KNO3 Less soluble than in pure water. d. 0.10 M NH4CH3COO how are warming temperatures causing a positive (reinforcing) feedback cycle that leads to more warming? group of answer choices ice and snow absorb light and as they melt earth produces more carbon dioxide. ice and snow reflect light and as they melt the earth absorbs more of the sun's rays. global warming decreases the planet's albedo which releases more carbon dioxide into the atmosphere. global warming increases the planet's albedo leading to more global warming. Describe how sitcom screen play is similar and different from other forms of drama you have studied? Find the average rate of change for the function over the given interval. y = 6x? - 4x + 6 between x= - 8 and x = 8 + 3 OA 384 OB 1411 4 C. 768 OD. 1411 8 Some dairy farmers want their cows to produce greater amounts of milk than average cows. Which process will help the dairy farmers develop cows with this trait? Case 5: Early Warning or False Sense of Security? Concussion Risk and the Case of the Impact-Sensing Football Chinstrap Use the factor theorem to write a polynomial equation that has solutions of 2, -2, and 4. (Hint: Suppose the solutions of a quadratic equation are 3 and 5. This means that x = 3 or x = 5 which gives us x - 3 = 0 or x - 5 = 0. The expressions are the factors of the polynomial which means that the equation is (x - 3)(x - 5) = 0.) According to the rule of 70, a country will double its real GDP per capita in 20 years if it grows at an average of per year. OA 7.0% . 3.5 % 2.0% OD 5.0%