can you solve this question​

Can You Solve This Question

Answers

Answer 1

Answer:

eojcjksjsososisjsiisisiiaodbjspbcpjsphcpjajosjjs ahahhahahahahahahahahahahahahhhahahahaahahhahahahahaahahahahaha

Answer 2
This should help it’s very helpful it helps with everything
Can You Solve This Question

Related Questions

in c the square root of a number N can be approximated by repeated calculation using the formula NG = 0.5(LG + N/LG) where NG stands for next guess and LG stands for last guess. Write a function that calculates the square root of a number using this method. The initial guess will be the starting value of LG. The program will com- pute a value for NG using the formula given. The difference between NG and LG is checked to see whether these two guesses are almost identical. If they are, NG is accepted as the square root; otherwise, the next guess (NG) becomes the last guess (LG) and the process is repeated (another value is computed for NG, the difference is checked, and so on). The loop should be repeated until the difference is less than 0. 005. Use an initial guess of 1. 0. Write a driver function and test your square root function for the numbers 4, 120. 5, 88, 36.01, 10,000, and 0. 25
PLEASE İN C PROGRAMMİNG

Answers

Answer:

Following are the program to the given question:

#include <stdio.h>//header file

double square_root(double N, double initialGuess)//defining a method square_root that takes two variable in parameters

{

double NG, LG = initialGuess,diff;//defining double variable

while(1)//use loop to calculate square root value

{

NG = 0.5 * (LG + N / LG);//using given formula

diff = NG - LG;//calculating difference

if(diff < 0)//use if to check difference is less than 0

diff = -diff;//decreaing difference

if(diff < 0.005)//use if that check difference is less than 0.005

break;//using break keyword  

else//defining else block

{

LG = NG;//holding value

}

}

return NG;//return value

}

int main()//defining main method

{

double ans, n,initialguess = 1.0;//defining double variable

n = 4;//use n to hold value

ans = square_root(n, initialguess);//calculating the square root value and print its value

printf("square_root(%lf) = %lf \n", n, ans);//print calculated value with number

n = 120.5;//use n to hold value

ans = square_root(n, initialguess);//calculating the square root value and print its value

printf("square_root(%lf) = %lf \n", n, ans);//print calculated value with number

n = 36.01;//use n to hold value

ans = square_root(n, initialguess);//calculating the square root value and print its value

printf("square_root(%lf) = %lf \n", n, ans);//print calculated value with number

n = 0.25;//use n to hold value

ans = square_root(n, initialguess);//calculating the square root value and print its value

printf("square_root(%lf) = %lf \n", n, ans);//print calculated value with number

printf("\nEnter a number: ");//print message

scanf("%lf", &n);//input value

ans = square_root(n, initialguess);//calculating the square root value and print its value

printf("square_root(%lf) = %lf \n", n, ans);//print calculated value with number

}

Output:

Please find the attachment file.

Explanation:

In this code, a method "square_root" is declared that takes two variable "N, initialGuess" in its parameters, inside the method a three double variable is declared.It uses the given formula and uses the diff variable to hold its value and uses two if to check its value is less than 0 and 0.005 and return its calculated value.In the main method, three double variables are declared that use the "n" to hold value and "ans" to call the method that holds its value and print its value.

"All data types are keywords but all keywords are not data types", justify this statement.​

Answers

Hey Mate Here Is Your Answer

Keywords Are Reserved Words Which Are Not Use As Normal Cases But Used For Special Purpose In Our Program whereas, Data Type Tells The Compiler And Interpreter How The Program Is Going To Be Executed And Can Be Used At Every Cases.

Hope This Helps You ❤️

Based on how they are stored in the computer, the types produced by these keywords can be categorized into two families, integer types and floating-point types.

What is the relation between data and keyword?

Bit, byte, and word are terminology that can be used to refer to either memory or data storage units in computers.

The main distinction between text fields and keyword fields is that text fields are examined during indexing, whereas keyword fields are not.

This means that while keyword fields are indexed exactly as is, text fields are split down into their constituent phrases at indexing to allow for partial matching.

A word or collection of words that an Internet user enters into a search engine or search bar to conduct a search is referred to as a keyword in the context of digital marketing.

Therefore, All data types are keywords, but all keywords are not data types.

Learn more about data and keywords here:

https://brainly.com/question/9588905

#SPJ2

The cost of hiring new employees outpaces the raises for established employees is

A.
Salary compression

B.
Occupational based pay

C.
Merit pay

D.
Need for Achievement

Answers

Answer:

do you have to make the right decisions to be a person who has been a member who is not the first time a great person who has a job in a day of his life or

SN1 reactions usually proceed with ________. A) equal amounts of inversion and retention at the center undergoing substitution B) slightly more inversion than retention at the center undergoing substitution C) slightly more retention then inversion at the center undergoing substitution D) complete inversion at the center undergoing substitution E) complete retention at the center undergoing substitution complete retention at the center undergoing substitution slightly more retention then inversion at the center undergoing substitution complete inversion at the center undergoing substitution equal amounts of inversion and retention at the center undergoing substitution slightly more inversion than retention at the center undergoing substitution

Answers

Answer:

equal amounts of inversion and retention at the center undergoing substitution

Explanation:

In an SN1 reaction, the rate determining step is the formation of a carbonation which is flat and planar.

This means that both faces of the carbo cation are equally available for attack by the nucleophile.

Attack on either of the faces may occur equally thereby yielding a racemic mixture.

Question 4. Select the statement that best describes the PM wave. a. Carrier phase angle changes represent the PM modulated signal, however, unlike FM and AM modulated carriers, it is not always easy to see these phase changes in the plot. b. The FM signal accurately represents the message. c. Although PM and FM techniques are classified as angular modulation techniques, they cannot be used interchangeably (i.e., modulated with FM and demodulated with PM, and visa versa). d. All statements are correct.

Answers

Answer:

c. Although PM and FM techniques are classified as angular modulation techniques, they cannot be used interchangeably i.e., modulated with FM and demodulated with PM, and vice versa.

Explanation:

Phase modulation is modulation pattern for conditioning communication signals for transmission. PM signals appears to change frequency with message wave. Both PM and FM are angular modulation techniques. The message in PM wave is captured in phase changes.

A projectile is fired horizontally with an initial speed of 50.0 m/s. Neglect air resistance.a) What is the magnitude of the displacement of the projectile 3.00 s after it is fired?b) What is the speed of the projectile 3.00 s after it is fired?c) What is the magnitude of the acceleration of the projectile 3.00 s after it is fired?

Answers

Answer:

a) 156 meters

b) 58 m/s

c) 9.8 m/s^2

Explanation:

a) The horizontal displacement X = V *t

X = 50 * 3 = 150 meters

Vertical displacement = y = – g * t² / 2

Y = -9.8 *3*3/2 = -4.9*9 = 44.1

Net Displacement = Sqrt (X^2 +Y^2) = 156.34 = 156 meters

b) Speed of the projectile

vx = 50 m/s

vy = t*g = 9.8*3 = 29.4

V = Sqrt (vx^2 + vy^2) = 58 m/s

c) Acceleration is the acceleration due to gravity = 9.8 m/s^2

The magnitude of the displacement of the projectile is equal to 156 meters.

Given the following data:

Initial speed = 50.0 m/s. Time = 3.00 seconds.

Scientific data:

Acceleration due to gravity (g) = [tex]9.8 m/s^2.[/tex]

How to calculate the displacement.

Mathematically, the magnitude of the displacement of a projectile is given by this formula:

[tex]Horizontal\;displacement = Vt\\\\Horizontal\;displacement = 50.0 \times 3.00[/tex]

Horizontal displacement = 150.0 meters.

[tex]Vertical displacement =\frac{1}{2} gt^2\\\\Vertical displacement =\frac{1}{2} \times 9.8 \times 3^2\\\\Vertical displacement =\frac{1}{2} \times 9.8 \times 9[/tex]

Vertical displacement = 44.1 meters.

[tex]D^2 = X^2 +Y^2\\\\D =\sqrt{44.1^2+150^2}[/tex]

D = 156.34 156 meters.

b. For the speed of the projectile:

Vertical speed = tg

[tex]V_y = tg = 9.8\times3\\\\ V_y = 29.4\;m/s[/tex]

[tex]D^2 = V_x^2 +V_y^2\\\\D =\sqrt{50^2+29.4^2}[/tex]

D = 58 m/s.

c) The magnitude of the acceleration of the projectile is equal to the acceleration due to gravity ([tex]9.8 \;m/s^2[/tex]).

Read more on acceleration here: brainly.com/question/247283

A crane is set up for steel erection at the site of a 5 story office building where each story is 15 feet tall. The new building will be 50 feet wide and 75 feet long and the crane is located 5 feet off the southwesterly corner of the building. Assuming that you need a 10 foot boom clearance over the last piece of steel.

Required:
Compute the minimum boom length

Answers

Answer:

127.58 ft

Explanation:

We need first to calculate the length from corner to corner of the story, L.

Since the length of each floor is 75 ft and its width 50 ft, and since each floor is a rectangle with diagonal, L, using Pythagoras' theorem, we have

L² = (75 ft)² + (50 ft)²

= 5625 ft² + 2500 ft²

L² = 8125 ft²

L = √(8125 ft²)

L = 90.14 ft

Since the crane is 5 ft off the southwesterly corner of the building, the working radius, R = L + 5 ft = 90.14 ft + 5 ft = 95.14 ft.(since the diagonal length of the floor plus the distance of the crane from the south westerly corner add to give the working radius)

The boom tip height, H = height of building h + clearance of boom, h'

h = height of each story, h" × number of stories, n

Since h" = 15 ft and n = 5

h = 15 ft × 5 = 75 ft

Also, h' = 10 ft

So, H = h + h'

H = 75 ft + 10 ft

H = 85 ft

So, the minimum boom length, L' = √(H² + R²)

substituting the values of the variables into the equation, we have

L' = √(H² + R²)

L' = √((85 ft)² + (95.14 ft)²)

L' = √(7225 ft² + 9051.6196 ft²)

L' = √(16276.6196 ft²)

L' = 127.58 ft

The data shows that recently the size of the raccoon population decreased. How will the decrease in the raccoon population affect the other populations?

Answers

Answer: Increase in the population of lower organisms.

Explanation: Raccoons are mesopredators found in the middle levels of food webs and have critical impacts on the dynamics of many other species. Thus, they greatly contribute to the functioning of the ecosystem.

They are naturally equipped to checkmate the population size of other organism that are below them (i.e., their preys) in the food web. They are; predators, pathogen carriers (such as rabies), and competitors, as they compete with some specialist in the food web.

Hence, the decrease in the population of raccoons will lead to the increase in the population size of lower organisms they prey on in the food web or chain.

Question 3 (12 points)
A pump of 1200rpm rotational speed is connected to a delivery pipe (rising main) of 500m
length and 0.025 Darcy friction factor. The following plot shows the pump performance and the
rising main curve.
40
Reming main
25
нер
20
15
100
Eficency
50
Pump
ES
10
20
50
60
Q (L.)
I
Answer the following short questions
1) The flow rate delivered by the pump when connected to the rising main is
2) The total head delivered by the pump when connected to the rising main is
3) The static lift (Hs) is:
4) What is the power produced (output) and consumed (input) by the pump?
5) What is the diameter of the rising main!
6) What is the sort of this pump​

Answers

so long so long so long so long so long

Explanation:

so long so long so long so long so long so long so long so long so long so long

Both a gage and a manometer are attached to a gas tank to measure its pressure. If the reading on the pressure gage is 65 kPa, determine the distance between the two fluid levels of the manometer if the fluid is

Answers

Answer:

The answer is below

Explanation:

Both a gage and a manometer are attached to a gas tank to measure its pressure. If the reading on the pressure gage is 65 kPa, determine the distance between the two fluid levels of the manometer if the fluid is a) mercury b) water

Solution:

A manometer is a device used to measure pressure. A manometer is made up of a U shaped tube containing liquid. The difference of pressure in the two arms causes the liquid to reach different heights.

a) The density of mercury ([tex]\rho_{Hg}[/tex]) = 13600 kg/m³, Pressure (P) = 65 kPa and g = 9.8 m/s², h = distance between the two fluid levels

[tex]P=\rho_{Hg}*g*h\\\\h=\frac{P}{\rho_{Hg}*g} =\frac{65*10^3\ Pa}{13600*9.81}=0.487\ m[/tex]

b) For water, [tex]\rho_w[/tex] = 1000 kg/m³, hence:

[tex]P=\rho_{w}*g*h\\\\h=\frac{P}{\rho_{w}*g} =\frac{65*10^3\ Pa}{1000*9.81}=6.6\ m[/tex]

1.1.2
Energy
1.1.3
Mass
1.1.4
Temperature
Power
1.1.5
1.2 State Ohm's law
1.3 State Joule's law
1.5 Name four factors that9 determine the resistance of the material
1.6 What is the SI Unit for current?
QUESTION 2​

Answers

Answer:

the energy is sgdrh35679

Your new team is working hard, but they are all less experienced than you and don't complete their tasks as quickly.What would you be most and least likely to do? (A). Reach out to your manager to discuss the situation.Try to identify the best way to support the new associates. (B).Remind your coworkers of performance expectations and that they need to be working harder to complete tasks. (C). Offer to help others complete their tasks; observe their work process and provide some tips that might help them. (D). Give your coworkers more time to figure out how to do the task; they likely just need more practice with what they've already learned.​

Answers

I believe most likely: (C) least likely: (B)
Other Questions
3 / 1/3 dividend by 1 / 1/5 From The Wild Swans at CooleI have looked upon those brilliant creatures,And now my heart is sore.Alls changed since I, hearing at twilight,The first time on this shore,The bell-beat of their wings above my head,Trod with a lighter tread.Unwearied still, lover by lover,They paddle in the coldCompanionable streams or climb the air;Their hearts have not grown old;Passion or conquest, wander where they will,Attend upon them still.What has changed in the speaker since he first heard the swans?A.The speaker sees that the swans can no longer walk along the shore.B.The speaker can no longer look upon the brilliant creatures.C.The speaker is older, more tired, and less lighthearted.D.The speaker can no longer chase after the swans. I need help i dont know how to do this somebody pls help me with this You notice that the price of Blu-ray players falls and the quantity of Blu-ray players sold increases. You suspect that _____ Blu-ray players shifts to the _____. demand for; left supply of; left demand for; right supply of; right Find the range of the following list of numbers:62, 59, 59, 61, 70, 120, 62, 70, 62, 6559616962 La corona espaola no contaba con una economa que le permitiera financiar las expediciones de conquista, de manera que estas fueron abordadas como: a) Empresas privadas b) Empresas globales c) Empresas financiadas por el papa d) Empresas pblicas Aydenme por favor The tennis courts are 3 blocks west and 2 blocks south of Miguels house. The bike path is 5 blocks east and 2 blocks south of Miguels house. How many blocks are the tennis courts from the bike path? Determine the domain of the following graph: Write the equivalent of the fraction using a dominator of 35 4/14 Where is primary succession most likely to occur?A. In the path of a hurricaneB. Where a forest has burnedO c. In the path of a floodO D. Where lava has cooled 3/4x + 12 =48 what is the value of ' x ' 1. C, 2. D, 3. A, 4. D, 5. A, 6. C, 7. B, 8. C, 9. D, 10. AExplanation: 1. The D major and B minor keys usually have the F and C sharp and C sharp always comes second in any key signature. The order is opposed to that of flats. FCGDAEB is correct.2. Also known as homonym keys, parallel keys have the same tonic (Fundamental note of the first degree) and different modes, either minor or major. Example, C major and C minor are parallel keys.3. These are minor and major scales sharing the same notes but arranged in different order of half and whole steps.4. Separated by three half steps D to C#, C# to C and C to B5. Natural, melodic and harmonic minor are the three types6. Chromatic scale - a non diatonic scale consisting of half step intervals only.7. Occurs when the third is in the bass8. Occurs when the fifth is in the bass9. More than one pitch sounding at the same time produces harmony two or more notes played together at the same time10. Half step larger than a major or perfect interval. A double flat or sharp is sometimes needed in their writing. what is liquidity preferences? If cos theta = 0.8, find 1 / sin (pi/2 - theta) 2) Simplify: 4/3+3/5+-3/5+-11/3 20 points Spanish words Unscramble the following family member vocabulary1. noheram 2.Lobuea3 ita 4. app 5. mmaa6. Dramastra 7. sonobri8 labuea9. tropardas 10.Omrip 11.gusendopriorm12.adacu Integers help me with this question Which is equivalent to1/4x what are the things that a spacecraft should do so it can overcome the challenges of intergalactic travel? What is the value of log E 100