1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Mandarinka [93]
3 years ago
12

The monthly saving P that has to be deposit in a saving account that pays an annual interest rate of r in order to save a total

amount of F in N years can be calculated by the formula: P = F(r/12) (1 + r/12)^12N - 1 Calculate the monthly saving that has to be deposit in order to save $100,000 in 5, 6, 7, 8, 9, and 10 years if the annual interest rate is 4.35%. Display the results in a two-column table where the first column is the number of years and the second column is the monthly deposit. The variation of vapor pressure p (in units of mm Hg) of benzene with temperature in the range of 0 < T < 42 degree C can be modeled with the equation: ln (p) = k/.0101 a - b where a = 34172 and b = 7.9622 are material constants and T is absolute temperature (K). Write a program that calculates the pressure at various temperatures and displays the results in a three column table. The first column must be temperatures in degree C, the second column, temperatures in K and the third column is the corresponding pressures in mm Hg. Include title and header information for each column.
Engineering
1 answer:
k0ka [10]3 years ago
4 0

Answer:

Explanation:

for the first question:

P  = F(r/12) (1 + r/12)^12N - 1

P = 10000(0.0435/12)(1+0.0435/12)^((12*N)-1)

n        P

5    448.7710111

6    468.6865023

7    489.4858002

8  511.208126

9  533.894442

Using C#

public void Main( ){

Print(

}

public double CalcP(double T){

  double a = 34172;

  double b = 7.9622;

   return Math.Exp(T/(0.0101*a) -b);

}

pubic void Print(params double[ ] T){

           foreach (var t in T)  {

        Console.WriteLine( T-273   + "     " + T + "         " + CalcP(T) );

}

}

You might be interested in
A conical enlargement in a vertical pipeline is 5 ft long and enlarges the pipe diameter from 12 in. to 24 in. diameter. Calcula
makkiz [27]

Answer:

F_y = 151319.01N = 15.132 KN

Explanation:

From the linear momentum equation theory, since flow is steady, the y components would be;

-V1•ρ1•V1•A1 + V2•ρ2•V2•A2 = P1•A1 - P2•A2 - F_y

We are given;

Length; L = 5ft = 1.52.

Initial diameter;d1 = 12in = 0.3m

Exit diameter; d2 = 24 in = 0.6m

Volume flow rate of water; Q2 = 10 ft³/s = 0.28 m³/s

Initial pressure;p1 = 30 psi = 206843 pa

Thus,

initial Area;A1 = π•d1²/4 = π•0.3²/4 = 0.07 m²

Exit area;A2 = π•d2²/4 = π•0.6²/4 = 0.28m²

Now, we know that volume flow rate of water is given by; Q = A•V

Thus,

At exit, Q2 = A2•V2

So, 0.28 = 0.28•V2

So,V2 = 1 m/s

When flow is incompressible, we often say that ;

Initial mass flow rate = exit mass flow rate.

Thus,

ρ1 = ρ2 = 1000 kg/m³

Density of water is 1000 kg/m³

And A1•V1 = A2•V2

So, V1 = A2•V2/A1

So, V1 = 0.28 x 1/0.07

V1 = 4 m/s

So, from initial equation of y components;

-V1•ρ1•V1•A1 + V2•ρ2•V2•A2 = P1•A1 - P2•A2 - F_y

Where F_y is vertical force of enlargement pressure and P2 = 0

Thus, making F_y the subject;

F_y = P1•A1 + V1•ρ1•V1•A1 - V2•ρ2•V2•A2

Plugging in the relevant values to get;

F_y = (206843 x 0.07) + (1² x 1000 x 0.07) - (4² x 1000 x 0.28)

F_y = 151319.01N = 15.132 KN

6 0
3 years ago
Du
leonid [27]

Answer=

low-frequency EMFs pose little danger to human health. ... Exposure to large levels of high-frequency EMFs is known to damage human DNA and cells

Explanation:

8 0
3 years ago
Write a function call with arguments tensPlace, onesPlace, and userInt. Be sure to pass the first two arguments as pointers. Sam
Trava [24]

Answer:

#include <stdio.h>

void SplitIntoTensOnes(int* tensDigit, int* onesDigit, int DecVal){

  *tensDigit = (DecVal / 10) % 10;

  *onesDigit = DecVal % 10;

  return;

}

int main(void) {

  int tensPlace = 0;

  int onesPlace = 0;

  int userInt = 0;

  userInt = 41;

  SplitIntoTensOnes(&tensPlace, &onesPlace, userInt);

  printf("tensPlace = %d, onesPlace = %d\n", tensPlace, onesPlace);

  return 0;

}

4 0
3 years ago
Troy must keep track of the amount of refrigerant he uses from a 50-pound cylinder to ensure that accurate
IgorLugansk [536]

Answer:

Amount of gas still in cylinder = 28 pound

Explanation:

Given:

Amount of gas in cylinder = 50 pound

Amount of gas used in Ms. Jones system = 13 pound

Amount of gas used in client system = 9 pound

Find:

Amount of gas still in cylinder

Computation:

Amount of gas still in cylinder = Amount of gas in cylinder - Amount of gas used in Ms. Jones system - Amount of gas used in client system

Amount of gas still in cylinder = 50 - 13 - 9

Amount of gas still in cylinder = 28 pound

7 0
3 years ago
Universal Containers uses the Case object to track service tickets. They have implemented Case teams to allow multiple support r
inna [77]

Answer:

Universal Containers uses the Case object to track service tickets. They have implemented Case teams to allow multiple support representatives to manage the Cases. Which two "Filter by owner" options would the user see while creating a list view on the Case object?

Choose 2 answers

A. My Case Teams

B. Roles

C. Public Groups

D. Queue

Correct answer is option A and D

A) My case teams &

D) Queue

Explanation:

Since a case team was implemented to allow multiple support representatives manage the case, the two filter by owner options the user will see are; my case teams and queue.

Queue entails choosing a specific case queue to look at for your view. Which in this case the user will see because the case isn't handled by one person.

In my case teams, cases are filtered to look at only cases where you’re on the case team.

6 0
3 years ago
Other questions:
  • WANT POINTS? JUST ANSWER ME:)
    6·2 answers
  • What is the main purpose of the alternator?
    13·1 answer
  • ANSWER FAST PLEASE!!! WILL MARK BRAINLIEST!!!!!!
    10·2 answers
  • Which one of the following activities is not an example of incident coordination
    15·1 answer
  • Steven is starting a project that requires a specialized, experienced contractor. Which selection process is the most suitable f
    11·1 answer
  • Robomind academy code if hour
    6·1 answer
  • Water from an upper tank is drained into a lower tank through a 5 cm diameter iron pipe with roughness 2 mm. The entrance to the
    11·1 answer
  • What is the purpose of gears?
    6·1 answer
  • What was the reason alloys were used instead of metals like copper, tin, or iron?
    11·1 answer
  • How to clean a snowblower carburetor without removing it.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!