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
PLEASEE HELP.!! ILL GIVE BRAINLIEST.!! *EXTRA POINTS* DONT SKIP:((
Trava [24]

Answer:

16

Explanation:

Have a good day my friend

8 0
3 years ago
Read 2 more answers
9.21 LAB: Sorting TV Shows (dictionaries and lists) Write a program that first reads in the name of an input file and then reads
natka813 [3]

The following code or the program will be used

<u>Explanation:</u>

def readFile(filename):

   dict = {}

   with open(filename, 'r') as infile:

       lines = infile.readlines()

       for index in range(0, len(lines) - 1, 2):

           if lines[index].strip()=='':continue

           count = int(lines[index].strip())

           name = lines[index + 1].strip()

           if count in dict.keys():

               name_list = dict.get(count)

               name_list.append(name)

               name_list.sort()

           else:

               dict[count] = [name]

           print(count,name)

   return dict

def output_keys(dict, filename):

   with open(filename,'w+') as outfile:

       for key in sorted(dict.keys()):

           outfile.write('{}: {}\n'.format(key,';'.join(dict.get(key))))

           print('{}: {}\n'.format(key,';'.join(dict.get(key))))  

def output_titles(dict, filename):

   titles = []

   for title in dict.values():

       titles.extend(title)

   with open(filename,'w+') as outfile:

       for title in sorted(titles):

           outfile.write('{}\n'.format(title))

           print(title)

def main():

   filename = input('Enter input file name: ')

   dict = readFile(filename)

   if dict is None:

       print('Error: Invalid file name provided: {}'.format(filename))

       return

   print(dict)

   output_filename_1 ='output_keys.txt'

   output_filename_2 ='output_titles.txt'

   output_keys(dict,output_filename_1)

   output_titles(dict,output_filename_2)  

main()

8 0
3 years ago
g ideal air conditioner maintains a house at 20 by dumping heat into the atmosphere at 40 this refrigerator has a coefficient of
masya89 [10]

AnsweCalculate a heat pump's coefficient of performance. ... Heat pumps, air conditioners, and refrigerators utilize heat transfer from cold to hot.Explanation:

4 0
2 years ago
How is tolerance calculated?
blondinia [14]

Answer:

hope you like it brainliest plezz

Explanation:

Tolerance equals the difference between lower and upper limit dimensions. Example; for 0.500-0.506 inch the tolerance would be 0.006 inch. BILATERAL TOLERANCE : It is a way to express tolerance by using both minus and plus variations from a given size.

3 0
3 years ago
What is the key objective of data analysis
IceJOKER [234]

Answer: The process of data analysis uses analytical and logical reasoning to gain information from the data. The main purpose of data analysis is to find meaning in data so that the derived knowledge can be used to make informed decisions.

3 0
3 years ago
Other questions:
  • 1. How many types of pumps are present?​
    14·1 answer
  • Project 8:The Harris-Benedict equation estimates the number of calories your body needs to maintain your weight if you do no exe
    5·1 answer
  • During an experiment conducted in a room at 25°C, a laboratory assistant measures that a refrigerator that draws 2 kW of power h
    13·1 answer
  • Heyyyyyyyyy people wrud
    7·1 answer
  • Introduction about steam distillation
    13·1 answer
  • (20 points) A 1 mm diameter tube is connected to the bottom of a container filled with water to a height of 2 cm from the bottom
    12·1 answer
  • Technician A says that a defective crankshaft position sensor can cause a no spark condition technician B says that a faulty ign
    8·1 answer
  • 9. A piece of Cherry wood is 5/4 x 4" X 4'<br> What is the length in inches?
    10·1 answer
  • Help i need to find out how to replace a water hose in a truck
    6·1 answer
  • What application of bioengineering uses principles of electronics and computer science to design products?
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!