Question 1a) Suppose you sample 100 times at random with replacement from a population in which 26% of the individuals are successes. Write a Python expression that evaluates to the chance that the sample has 20 successes.

Answers

Answer 1

Answer:

from math import comb

n = 100

x = 20

p = 0.26

q = 0.76

print(comb(n, x)*(p**x)*(q**(n-x)))

Step-by-step explanation:

Given that :

Number of trials, n = 100

P(success), p = 26% = 0.26

P(success)' = 1 - p = 1 - 0.26 = 0.74

Chance that sample has 20 successes = x

This problem meets the condition for a binomial probability distribution :

p(x = 20)

Recall :

P(x = x) = nCx * p^x * q^(n-x)

Using python :

comb is an built in function which calculate the combination of two arguments it takes ; and returns the combination value.

** mean raised to the power and

* is used for multiplication

Answer 2

The Python code as per the given question is provided below.

Program explanation:

The number of trials,

100

Probability of success,

20% or 0.26

Size of array generated,

2000

The output that shows chances of 20 success,

S

Program code:

import numpy as np

S=sum(np.random.binomial(100,0.26,2000)==20)/2000

S

Learn more about Python expression here:

https://brainly.com/question/21645017

Question 1a) Suppose You Sample 100 Times At Random With Replacement From A Population In Which 26% Of

Related Questions

Cai wants to buy cherries and apples to make a fruit tart. Cherries cost $3.75 per
pound and apples cost $2.25 per pound. How much does he spend if he buys 2
pounds of cherries and 1.5 pounds of apples? How much does he spend if he buys x
pounds of cherries and y pounds of apples?

Answers

2 pounds of cherries cost 2x3.75 dollars = 7.5 dollars.
1.5 pounds of apples cost 1.5x2.25 = 3.375 dollars.
The total is $10.87.5 (rounded to $10.88)

For x pounds of cherries and y pounds of apples, the cost is 3.75x + 2.25y

The total mass of 8 identical dictionaries is 9.92 kilograms. What is the mass, in kilograms, of one dictionary? Enter your answer in the space provided​

Answers

Your answer is 1.24 kg

Sebastian is going to choose the color pattern

Answers

Answer:

use blue red blue red

Step-by-step explanation:

Suppose the random variables X, Y, and Z have the following joint probability distribution. x y z f ( x , y , z ) 1 1 1 0.05 1 1 2 0.10 1 2 1 0.15 1 2 2 0.20 2 1 1 0.20 2 1 2 0.15 2 2 1 0.10 2 2 2 0.05 Determine the conditional probability distribution of X given that Y

Answers

Answer:

Determine the conditional probability distribution of X given that Y = 1 and Z = 2. Round your answers to two decimal places (e.g. 98.76).

answer:

Given that Y = 1 :  2/5

Given that Z = 2 : 3/5

Step-by-step explanation:

The conditional probability distribution of X     F x | yz^( x )

Given that Y = 1

F x | yz . ( x | yz )  = 2/5

Given that z = 2

= 3/5

attached below is the detailed solution

The asymptote of the function f(x) = 3x + 1 – 2 is . Its y-intercept is

Answers

Answer:

-1

Step-by-step explanation:

1-2=-1

y=mx+b

b= y intercept

Answer:

-1

Step-by-step explanation:

If P = (2,-1), find the image
of P under the following rotation.
270° counterclockwise about the origin
([?], [])
Enter the number that belongs in
the green box.

Answers

9514 1404 393

Answer:

  P'(-1, -2)

Step-by-step explanation:

The transformation for 270° CCW rotation is ...

  (x, y) ⇒ (y, -x)

Then the image of the given point is ...

  P(2, -1) ⇒ P'(-1, -2)


Find the area of the following figure with the indicated dimensions.use pi.

Answers

Answer:

The answer is "47.5354".

Step-by-step explanation:

In the given graph it is a half-circle and a triangle.

So, the diameter of the circle is 6.2 so the radius is 3.1

[tex]\text{Area of a circle}= \pi r^2\\\\\text{Area of a triangle}= \frac{1}{2} b h\\\\[/tex]

Calculating the total area of the shape:

[tex]= \pi r^2+\frac{1}{2} \times b\times h\\\\ = 3.14 \times 3.1^2+\frac{1}{2} \times 6.2 \times 5.6\\\\ = 3.14 \times 3.1^2+\frac{1}{2} \times 6.2 \times 5.6\\\\=3.14 \times 9.61+\frac{1}{2} \times 34.72\\\\=3.14 \times 9.61+\frac{1}{2} \times 34.72\\\\= 30.1754+17.36\\\\=47.5354\\\\[/tex]

Given that m∠abc=70° and m∠bcd=110°. Is it possible (consider all cases): Line AB intersects line CD?

Answers

The line AB and CD are parallel. Then it is impossible that the line AB intersects the line CD.

What are parallel lines?

When the distance between the lines is constant, then the lines are called parallel lines. The lines do not intersect when they are separated from each other. And the slope of the lines is equal.

Given that ∠ABC = 70° and ∠BCD = 110°.

Then the line AB and the line CD makes the same angle with the line BC.

Hence, the line AB and CD are parallel.

Then it is impossible that the line AB intersects the line CD.

More about the parallel lines link is given below.

https://brainly.com/question/16701300

#SPJ1

what is the slope of a line parallel to the line whose equation is 2x+5y=10

Answers

Answer:

1. The slope of a line  that is perpendicular to a line whose equation

is 5y = 10 + 2x is

2.

The line y = 2x - 1 is neither parallel nor perpendicular to the line

y = -2x + 3

The line y = -2x + 5 is parallel to the line y = -2x + 3

The line y =  x + 7 is perpendicular to the line

y = -2x + 3

3. The equation of the line that passes through the point (5 , -4) and

is parallel to the line whose equation is 2x + 5y = 10 is

y =  x - 2

Step-by-step explanation:

Let us revise some rules

The slope-intercept form of the linear equation is y = m x + b, where m is the slope of the line and b is the y-intercept

The slopes of the parallel lines are equal

The product of the slopes of the perpendicular lines is -11. The slope of a line  that is perpendicular to a line whose equation

is 5y = 10 + 2x is

2.

The line y = 2x - 1 is neither parallel nor perpendicular to the line

y = -2x + 3

The line y = -2x + 5 is parallel to the line y = -2x + 3

The line y =  x + 7 is perpendicular to the line

y = -2x + 3

3. The equation of the line that passes through the point (5 , -4) and

is parallel to the line whose equation is 2x + 5y = 10 is

y =  x - 2

Step-by-step explanation:

Let us revise some rules

The slope-intercept form of the linear equation is y = m x + b, where m is the slope of the line and b is the y-intercept

The slopes of the parallel lines are equal

The product of the slopes of the perpendicular lines is -11. The slope of a line  that is perpendicular to a line whose equation

is 5y = 10 + 2x is

2.

The line y = 2x - 1 is neither parallel nor perpendicular to the line

y = -2x + 3

The line y = -2x + 5 is parallel to the line y = -2x + 3

The line y =  x + 7 is perpendicular to the line

y = -2x + 3

3. The equation of the line that passes through the point (5 , -4) and

is parallel to the line whose equation is 2x + 5y = 10 is

y =  x - 2

Step-by-step explanation:

Let us revise some rules

The slope-intercept form of the linear equation is y = m x + b, where m is the slope of the line and b is the y-intercept

The slopes of the parallel lines are equal

The product of the slopes of the perpendicular lines is -11. The slope of a line  that is perpendicular to a line whose equation

is 5y = 10 + 2x is

2.

The line y = 2x - 1 is neither parallel nor perpendicular to the line

y = -2x + 3

The line y = -2x + 5 is parallel to the line y = -2x + 3

The line y =  x + 7 is perpendicular to the line

y = -2x + 3

3. The equation of the line that passes through the point (5 , -4) and

is parallel to the line whose equation is 2x + 5y = 10 is

y =  x - 2

Step-by-step explanation:

Let us revise some rules

The slope-intercept form of the linear equation is y = m x + b, where m is the slope of the line and b is the y-intercept

The slopes of the parallel lines are equal

The product of the slopes of the perpendicular lines is -1

The frequency distribution below summarizes the home sale prices in the city of Summerhill for the month of June. Determine the lower class limits.

Answers

Answer:

79.5, 110.5, 141.5, 172.5, 203.5, 234.5

Step-by-step explanation:

Given

The attached distribution

Required

The lower class limits

To do this, we simply subtract 0.5 from the lower interval

From the attached distribution, the lower intervals are:

80.0, 111.0, 142.0, 173,0 .......

So, the lower class limits are:

[tex]80.0-0.5 = 79.5[/tex]

[tex]111.0-0.5 = 110.5[/tex]

[tex]142.0-0.5 = 141.5[/tex]

[tex]173.0-0.5 = 172.5[/tex]

[tex]204.0-0.5 = 203.5[/tex]

[tex]235.0-0.5 = 234.5[/tex]

when 5 is added to 2 times a number , the results is 45. find the number

Answers

Answer:i think its 20

Step-by-step explanation: 20 x 2 is 40 plus 5 is 45

Answer:

✓ x - the number 5 + 2x = 45 2x = 45 - 5 2x = 40 x = 20 5 + 2(20) = 45 5 + 40 = 45 45 = 45 Hope this helps. :-) the answer is 20

Step-by-step explanation: Algebra.com

Answer pls:) I would really appreciate it

Answers

Answer:

1. C

2. B

3 A

4. A

Step-by-step explanation:

#1

Brady starts off with 12 coins

And buys 6 more coins every year

So add 6 to find number of coins he will have the next year until we've done it five times ( because we want to find how many he will have after 5 years )

12 ( 1st year )

Add 6

12 + 6 = 18 ( 2nd year )

Add 6

18 + 6 = 24 ( 3rd year )

Add 6

24 + 6 = 30 ( 4th year )

Add 6

30 + 6 = 36 ( 5th year )

By the fifth year he will have 36 coins and the sequence would be

12, 18, 24, 30, 36

Which corresponds with answer choice C

2

15, 19, 23, 27, ?

We want to find the next term

To do so we must find the common difference

We can do this by subtracting the last given term by the term before it

27 - 23 = 4

Just to clarify we can do the terms before those

19 - 15 = 4

So the common difference is 4

Now to find the next term we simply add 4 to the last given term

27 + 4 = 31

The next term would be 31

3. Cumulative property of addition states that you can add any 3 numbers in a different order and they will be the same

a + b + 2 = 2 + a + b

Same variables and numbers just different order

Therefore this is an example of cumulative property of addition

4. The GCF ( greatest common factor ) is the greatest number that the two numbers can be divided by

18a and 24ab

Factors of 18

2 , 9 , 6, 3 , 1 and 18

Factors of 24

24, 1, 2, 12, 6, 4, 3 and 8

The greatest factor that both 18 and 24 have is 6

The GCF would be 6a ( not 6 ) because both numbers share a common variable (a) ( 18a , 24ab )

suppose y varies inversely with X, and y = 48 when x = 3. What is the value of x when y = 24?
NO LINKS OR ANSWERING YOU DON'T KNOW.

a. 3
b. 12
c. 6
d. 24​

Answers

Answer:

C. 6

Step-by-step explanation:

Recall that inverse variation is given by:

[tex]\displaystyle y=\frac{k}{x}[/tex]

Where k is the constant of variation.

We know that y = 48 when x = 3. Substitute:

[tex]\displaystyle (48)=\frac{k}{(3)}[/tex]

Solve for k:

[tex]k=3(48)=144[/tex]

Hence, our equation is:

[tex]\displaystyle y=\frac{144}{x}[/tex]

We want to find x when y = 24. Substitute:

[tex]\displaystyle \frac{24}{1}=\frac{144}{x}[/tex]

Cross-multiply:

[tex]24x=144[/tex]

Divide both sides by 24. Hence:

[tex]x=6[/tex]

Our answer is C.

Can someone do eight nine one and two ?

Answers

Answer: hello there here are your answers:

8) B multiplication property of zero

9) C additive identify

1) 8

2) -2a-7

Step-by-step explanation:

1) [tex]\frac{3+u}8^{2} \\u=5 \\so\\ \frac{3+5}8^{2} \\3+5=8^{2} \\8^{2} =\\64 \\\\ 64/8=\\\\\\8 \\there.\\\\\\[/tex]

2)[tex]-2(a-7)\\\\-2(a)(-7)\\\\=-2a+14\\\\\\there[/tex]

From two points on the same level as the base of a tree, the angles of elevation to the top of the tree are found to be 24° and 46°. If the two points are 42 feet apart and on the same side of the tree, how tall is the tree? (Give your answer to the nearest tenth of an inch.)​

Answers

Answer:

the answer is 32.8in.

Step-by-step explanation:

(sin 22)/42 = (sin 24)/x

x = 45.60

sin 46 = x/45.60

x = 32.80

32.8in.

hope it helped :)

mark me brainliest!

Which of the following expressions would represent a class of 42 students divided equally into 7 groups?

Answers

Answer: [tex]7\sqrt{42}[/tex]

Step-by-step explanation:

42 students divided equally into 7 groups means 42 divided by 7, and [tex]7\sqrt{42}[/tex] is the only choice that shows that.

7√42. is the expressions would represent a class of 42 students divided equally into 7 groups

What is Division?

A division is a process of splitting a specific amount into equal parts.

Given,

A class of forty two Forty two students divided equally into 7 groups.

Forty two students divided equally into seven groups means forty two divided by seven, and

this can be done by using 7√42.

42 students divided equally into 7 groups means forty two divided by seven

Hence  7√42. is the expressions would represent a class of 42 students divided equally into 7 groups

To learn more on Division click:

https://brainly.com/question/21416852

#SPJ2

If someone can pls give me the answer the would be greatly appreciated :)

Answers

Step-by-step explanation:

The Answer Is Provided Below ➳

(2²)² = 2⁴/2⁴ = 2⁰ × 2⁰ = 2⁰/2⁰

You bought a car that was $25500 and the value depreciates by 4.5% each year.

How much will the car be worth after 5 years?

How much after 8 years?

Answers

Answer:

(a) 20256.15625

(b) 17642.78546

Step-by-step explanation:

(a) There's a formula for this problem y = A(d)^t where, A is the initial value you are given, d is the growth or decay rate and t is the time period. So, in this case, as the car cost is decreasing it is a decay problem and we can write the formula as such; y = A(1-R)^t

So, in 5 years the car will be worth, 25500(1-4.5%)^5 or 20256.15625 dollars

(b) And after 8 years the car will be worth 25500(1-4.5%)^8 or 17642.78546 dollars.

5/6 ÷ 1/3 - 2/3 (2/5)

Answers

Answer:

[tex] \frac{67}{30} \: \text{or} \:2 \frac{7}{30} [/tex]

Step-by-step explanation:

5/6 ÷ 1/3 - 2/3 (2/5)

= 5/6 ÷ 1/3 - 2/3 × 2/5= 5/2 - 2/3 × 2/5= 5/2 - 4/15= 67/30 or 2 7/30

Hope it helps you! \(^ᴥ^)/

The time that it takes to fold 1,000 origami cranes varies inversely with the number of people folding the cranes. If a class of 25 students work together to fold the 1,000 cranes, it will take 3 hours. Write an equation to show the relationship between time (t) and the number of people (n) folding cranes.
ASAP!!!!

Answers

Answer:

t = [tex]\frac{75}{n}[/tex]

Step-by-step explanation:

Use the inverse variation equation, y = [tex]\frac{k}{x}[/tex]

Replace y with t, and replace x with n, since those are the variables in this situation:

t = [tex]\frac{k}{n}[/tex]

Plug in 3 as t and 25 as n, and solve for k:

3 = [tex]\frac{k}{25}[/tex]

75 = k

Create the equation by plugging in 75 as k:

t = [tex]\frac{75}{n}[/tex]

So, the equation is t = [tex]\frac{75}{n}[/tex]

What does it mean if a project has a Percent Spent of 90%, Percent Scheduled of 85%, and a Percent Complete of 95%

Answers

Answer:

It means that the project is in good shape, within budget an d it would finish early

Step-by-step explanation:

The answer to this question is pretty straight forward. If a project has the percent spent fine 90 percent, the scheduled has percentage of 85 percent and the complete is at the percentage of 95, what it means is that this project is in good shape, the project being carried out is still being done within the proposed budget and at 95% complete, it means that the project is going to finish early.

(x-5)(X+12)=-70
[tex](x - 5)(x + 12) = - 70[/tex]

Answers

Answer:

[tex]x = - 2[/tex]

[tex]x = - 5[/tex]

Step-by-step explanation:

Give

[tex](x - 5)(x + 12)[/tex]

Apply FOIL Method

[tex]x {}^{2} + 7x - 60 = - 70[/tex]

Add 70 on both sides

[tex] {x}^{2} + 7x + 10[/tex]

Factor

[tex](x + 2)(x + 5)[/tex]

So our roots are

x=-2

x=-5

Answer:

dtet

Step-by-step explanation:

dgbyn

Solve the system of inequalities to decide if the point (-3,2) is part of the solution; y<=-4x-3, +8y>=7

Answers

Answer:

[tex](x,y) = (-3,2)[/tex] is a solution

Step-by-step explanation:

Given

[tex]y \le -4x + 3[/tex]

[tex]x + 8y \ge 7[/tex]

Required

Determine if [tex](x,y) = (-3,2)[/tex] is a solution

[tex]y \le -4x + 3[/tex] becomes

[tex]2 \le -4 * -3 + 3[/tex]

[tex]2 \le 15[/tex] --- this is true

[tex]x + 8y \ge 7[/tex]

[tex]-3+ 8 * 2 \ge 7[/tex]

[tex]13 \ge 7[/tex] --- this is also true

Hence,

[tex](x,y) = (-3,2)[/tex] is a solution

What is the general form of the equation for the given circle centered at [0, 0)?

Answers

Answer:

x^2+y^2=r^2 is quation of circle whose centre is (0,0)

The mean age of 5 people in a room is 27 years.
A person enters the room.
The mean age is now 35.
What is the age of the person who entered the room?

Answers

Answer:

main age = total age/total people

if Main age is = 27

[tex]27 = \frac{ \times }{5} [/tex]

and x = 135

Total age is = 135

then main age is 35

[tex][35 = \frac{y}{6} [/tex]

and y = 210

first main age - second main age = age of the person participating

210 - 135 = 75

the age is = 75

HAVE A NİCE DAY

Step-by-step explanation:

GREETINGS FROM TURKEY

Three more than twice a number is 35.

Answers

Answer:

x = 16, or if you didn't want the value for x,

2x + 3 = 35

Step-by-step explanation:

Three more: +3

Twice a number: 2x

Combined:

2x + 3 = 35.

Get rid of the 3 by subtracting it from both sides:

2x = 32

Get rid of the 2 by dividing it from both sides:

x = 16

Answer:

The number is 16.

Step-by-step explanation:

Let the unknown number be x.

Now we translate the sentence into an equation piece by piece.

Three more than twice a number is 35.

2x

Three more than twice a number is 35.

2x + 3

Three more than twice a number is 35.

2x + 3 = 35

Now we solve the equation.

Subtract 3 from both sides.

2x = 32

Divide both sides by 2.

x = 16

Answer: The number is 16.

P.S. Notice that x was a variable that was introduced solely to solve the problem. The original problem is a word problem, not an equation, and has no x in it. The correct answer makes no reference to x since x was used to solve the equation but is not part of the given problem. The person asking the question has no idea what x is. He just wants a number as an answer.

Q.1 Determine whether y = (c - e ^ x)/(2x); y^ prime =- 2y+e^ x 2x is a solution for the differential equation Q.2 Solve the Initial value problem ln(y ^ x) * (dy)/(dx) = 3x ^ 2 * y given y(2) = e ^ 3 . Q.3 Find the general solution for the given differential equation. (dy)/(dx) = (2x - y)/(x - 2y)

Answers

(Q.1)

[tex]y = \dfrac{C - e^x}{2x} \implies y' = \dfrac{-2xe^x-2C+2e^x}{4x^2} = \dfrac{-xe^x-C+e^x}{2x^2}[/tex]

Then substituting into the DE gives

[tex]\dfrac{-xe^x-C+e^x}{2x^2} = -\dfrac{2\left(\dfrac{C-e^x}{2x}\right) + e^x}{2x}[/tex]

[tex]\dfrac{-xe^x-C+e^x}{2x^2} = -\dfrac{C-e^x + xe^x}{2x^2}[/tex]

[tex]\dfrac{-xe^x-C+e^x}{2x^2} = \dfrac{-C+e^x - xe^x}{2x^2}[/tex]

and both sides match, so y is indeed a valid solution.

(Q.2)

[tex]\ln\left(y^x\right)\dfrac{\mathrm dy}{\mathrm dx} = 3x^2y[/tex]

This DE is separable, since you can write [tex]\ln\left(y^x\right)=x\ln(y)[/tex]. So you have

[tex]x\ln(y)\dfrac{\mathrm dy}{\mathrm dx} = 3x^2y[/tex]

[tex]\dfrac{\ln(y)}y\,\mathrm dy = 3x\,\mathrm dx[/tex]

Integrate both sides (on the left, the numerator suggests a substitution):

[tex]\dfrac12 \ln^2(y) = \dfrac32 x^2 + C[/tex]

Given y (2) = e ³, we find

[tex]\dfrac12 \ln^2(e^3) = 6 + C[/tex]

[tex]C = \dfrac12 \times3^2 - 6 = -\dfrac32[/tex]

so that the particular solution is

[tex]\dfrac12 \ln^2(y) = \dfrac32 x^2 - \dfrac32[/tex]

[tex]\ln(y) = \pm\sqrt{3x^2 - 3}[/tex]

[tex]\boxed{y = e^{\pm\sqrt{3x^2-3}}}[/tex]

(Q.3) I believe I've already covered in another question you posted.

Plz help. I’m finding surface area. I need the answer in units. Thank you.

Answers

Answer:

C. 17 units

Step-by-step explanation:

Surface area of rectangular prism is given as:

A = 2lw + 2lh + 2wh

A = 930 square units

l = 12 units

h = 9 units

w = ? (We're to find the width)

Plug in the value into the formula

930 = 2*12*w + 2*12*9 + 2*w*9

930 = 24w + 216 + 18w

Add like terms

930 - 216 = 42w

714 = 42w

Divide both sides by 42

714/42 = 42w/42

17 = w

w = 17 units

Simultaneous equations 5x-4y=19
x+2y=8

Answers

Answer:

x = 5 and y = 1.5

Step-by-step explanation:

hope this helps please like and mark as brainliest

A decorative wall in a garden is to be built using bricks that are 5 1/2 inches thick and mortar joints are 1/4 inch thick. What is the height of the wall?

Answers

Step-by-step explanation:

how many layers of bricks are used ?

also, I assume, the thickness of bricks means actually their height when laid.

but still, I cannot answer that, as nothing indicates if there is only one layer of bricks or 2 or 3 or 4 or ...

Other Questions
1. Why don't you let me .............thatfor you? I am happy to help.doto dodiddone Workers at mission control who support astronauts are called ---.Aflight controllersBmission expertsCsupport officersD ground-crew members an object that has lost its electrons become? Record the journal entry for Sales and for Cash Over and Short for each of the following separate situations.a. The cash registers record shows $420 of cash sales, but the count of cash in the register is $430.b. The cash registers record shows $980 of cash sales, but the count of cash in the register is $972. Why is the charge on a charged sphere distributed uniformly over its surface? -Similar charges seek to be the minimum distance possible from each other. -Opposite charges seek to be the maximum distance possible from each other. -Similar charges seek to be the maximum distance possible from each other. -None of the above Which of these is an example of a literal equation?A. 4x + 7 = 22B. 5+ 20 = 52C. ax - by = kD. 2x + 7y A(n) is the process by which police examine a person or property to find evidence that will be used to prove guilt in a criminal trial. A) what is the simplified product of seven-fourths divided by eight-fifths as an improper fractionB) what is this number as a mixed number Most conflicts in the Middle East are based around __________ and __________.A.government . . . industryB.technology . . . oilC.land . . . religionD.population . . . racism Question 15 of 20What is migration?A. Using trains to carry trade goods from place to placeB. The movement of people from one place to anotherC. The movement of products from one place to anotherD. The use of machines to make travel easier Most streams result from _____. a. altitude b. melted snow c. oceans d. rivers The ________ line is a financial analysis tool that enables you to see patterns in cash inflows and outflows. A : value B : money C : time D : trend Water evaporates from a lake. Arrange the next steps of the water cycle in the correct order.Water vapor condenses to form clouds.Water flows down mountains and hills.Water falls as rain, snow, and sleet.Water joins streams or formsgroundwater What characteristics would you most associate with Lady Macbeth afterreading this speech? John is working on his department's annual plan. Employee performance has been okay and commitment to his department's goals moderate. In the past Johnhas asked his employees to do their best. This year he is asking each employee to work with him in determining exactly what that employee is going toaccomplish this year. John wants his people to feel the goals are theirs, to invest in their accomplishment. He wants them to believe that they can accomplishthese goals. He thinks he can help this whole process by meeting with each employee quarterly and talking about where the department is and where theemployee is in regards to goal accomplishment. In the past what principle of goal setting did John violate?O A) Goal commitmentOB) Assigning specific goalsO Setting difficult but acceptable goalsOD) Providing feedback on goal attainment Quantity demand is 385 and quantity supplied is 203 calculate the shortage When a golfer tees off, the head of her golf club which has a mass of 158 g is traveling 48.2 m/s just before it strikes a 46.0 g golf ball at rest on a tee. Immediately after the collision, the club head continues to travel in the same direction but at a reduced speed of 32.7 m/s. Neglect the mass of the club handle and determine the speed of the golf ball just after impact. Another form of fibrous connective tissue of the body that covers, connects or supports other tissues is called? Diego is trying to lift a piano to the second floor of his house. Diego uses a pulley system and gives a big lift to the piano.The piano moves upward, then stops, and then it starts to fall to the ground. (The direction of the force of gravity is negative.) Which list best describes the forces on the piano in the proper order 2. Is there a difference in the way men and women speak Hindi like Japanese?3. What do you think about the difference in Japanese speaking style between men and women?4. Is there a difference between written and spoken Hindi?