Question

Ocean LevelsAssuming the ocean’s levelis currently rising at about 1.5 millimeters per year, write a program that displays a table showing the number of millimeters that the ocean will have risen each...

Ocean LevelsAssuming the ocean’s levelis currently rising at about 1.5 millimeters per year, write a program that displays a table showing the number of millimeters that the ocean will have risen each year for the next 25 years. Hint:Years should be the counter variable. It should change from 1 to 25 HTML only

0 0
Add a comment Improve this question Transcribed image text
Answer #1

<!DOCTYPE html>
<html>
<head>
   <title>Ocean Level Rising</title>
</head>
<body>

<center>


    <div>
        <center><h1>Ocean Level Rising Table</h1></center>
    </div><br><br>


<!--Creates a table
   tr for table row
   th for table heading
   td for table data-->


    <table border="2">


        <tr>
            <th>Year</th>
            <th>Level Risen (in millimeters )</th>
        </tr>
        <tr>
            <td>1</td>
            <td>1.5</td>
        </tr>
        <tr>
            <td>2</td>
            <td>3</td>
        </tr>
        <tr>
            <td>3</td>
            <td>4.5</td>
        </tr>
        <tr>
            <td>4</td>
            <td>6</td>
        </tr>
        <tr>
            <td>5</td>
            <td>7.5</td>
        </tr>
        <tr>
            <td>6</td>
            <td>9</td>
        </tr>
        <tr>
            <td>7</td>
            <td>10.5</td>
        </tr>
        <tr>
            <td>8</td>
            <td>12</td>
        </tr>
        <tr>
            <td>9</td>
            <td>13.5</td>
        </tr>
        <tr>
            <td>10</td>
            <td>15</td>
        </tr>
        <tr>
            <td>11</td>
            <td>16.5</td>
        </tr>
        <tr>
            <td>12</td>
            <td>18</td>
        </tr>
        <tr>
            <td>13</td>
            <td>19.5</td>
        </tr>
        <tr>
            <td>14</td>
            <td>21</td>
        </tr>
        <tr>
            <td>15</td>
            <td>22.5</td>
        </tr>
        <tr>
            <td>16</td>
            <td>24</td>
        </tr>
        <tr>
            <td>17</td>
            <td>25.5</td>
        </tr>
        <tr>
            <td>18</td>
            <td>27</td>
        </tr>
        <tr>
            <td>19</td>
            <td>28.5</td>
        </tr>
        <tr>
            <td>20</td>
            <td>30</td>
        </tr>
        <tr>
            <td>21</td>
            <td>31.5</td>
        </tr>
        <tr>
            <td>22</td>
            <td>33</td>
        </tr>
        <tr>
            <td>23</td>
            <td>34.5</td>
        </tr>
        <tr>
            <td>24</td>
            <td>36</td>
        </tr>
        <tr>
            <td>25</td>
            <td>37.5</td>
        </tr>


    </table>


</center>


</body>
</html>

0 CAUserss9Apesktop,htmlTable.htmi-Sublime Text (UNREGISTERED) Eile Edit Selecti Find Miew Goto Tools Praject Preferences Hel

C Ocean LevelsAssurming The Oce x Ocean Level Rising File | CYUsers/svs97/Desktop/htmlTable.html С Ocean Level Rising Table Y

Add a comment
Know the answer?
Add Answer to:
Ocean LevelsAssuming the ocean’s levelis currently rising at about 1.5 millimeters per year, write a program that displays a table showing the number of millimeters that the ocean will have risen each...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • During the past decade ocean levels have been rising faster than in the past, an average...

    During the past decade ocean levels have been rising faster than in the past, an average of approximately 3.1 millimeters per year. Write a program that computes how much ocean levels are expected to rise during the next 15 years if they continue rising at this rate. Display the answer in both centimeters and inches.

  • Write a program that displays the following pattern: Write a program that displays the following table:...

    Write a program that displays the following pattern: Write a program that displays the following table: Assume a runner runs 14 kilometers in 45 minutes and 30 seconds. Write a program that displays the average speed in miles per hour. (Note that 1 mile is 1.6 kilometers) The U.S. Census Bureau projects population based on the following assumptions: One birth every 7 seconds One death every 13 seconds One new immigrant every 45 seconds Write a program to display the...

  • 7. The following table displays the number of HIV diagnoses per year in a particular country....

    7. The following table displays the number of HIV diagnoses per year in a particular country. Year 1997 1998 1999 2000 2001 2002 2003 2004 2005 Diagnoses 2512 2343 2230 2113 2178 2495 2496 2538 2518 a. Using Geogebra or another curve modelling program, determine a polynomial equation that can be used to model this data. Include a picture showing the curve. b. Using this model, estimate the number of diagnoses in 1996 and in 2006. c. At what rate...

  • Write them in python IDLE ***** 5. Average Rainfall Write a program that uses nested loops...

    Write them in python IDLE ***** 5. Average Rainfall Write a program that uses nested loops to collect data and calculate the average rainfall over a period of years. The program should first ask for the number of years. The outer loop will iterate once for each year. The inner loop will iterate twelve times, once for each month. Each iteration of the inner loop will ask the user for the inches of rainfall for that month. After all iterations,...

  • (JAVA) Write a program that deals with inflation, which is essentially the rising cost of general goods over time.

    IN JAVAWrite a program that deals with inflation, which is essentially the rising cost of general goods over time. That is, the price of goods, such as a packet of peanuts, goes up as time goes by. So, you will write a program to gauge the expected cost of an item in a specified number of years. The program asks for the cost of the item, the number of years, and the rate of inflation. The output is the estimated...

  • Write a Java application program that plays a number guessing game with the user. In the...

    Write a Java application program that plays a number guessing game with the user. In the starter code that you are given to help you begin the project, you will find the following lines of code: Random generator = args.length == 0 ? new Random() :                    new Random(Integer.parseInt(args[0])); int secret = generator.nextInt(100); You must keep these lines of code in your program. If you delete these lines, or if you change thse lines in any way, then your program...

  • K&G Company currently sells 1.05 million units per year of a product to one customer at a price of $3.00 per unit. The customer requires that the product be exclusive and expects no increase in sales during the five-year contract. The company manufactures

    K&G Company currently sells 1.05 million units per year of a product to one customer at a price of $3.00 per unit. The customer requires that the product be exclusive and expects no increase in sales during the five-year contract. The company manufactures the product with a machine that it purchased seven years ago at a cost of $723,000. Currently, the machine has a book value of $430,000 but the market value is only $233,000. The machine is expected to last another five years,...

  • Blue Company purchases sails and produces sailboats. It currently produces 1,200 sailboats per year, operating at...

    Blue Company purchases sails and produces sailboats. It currently produces 1,200 sailboats per year, operating at normal capacity, which is about 80% of full capacity. Blue purchases sails at $267 each, but the company is considering using the excess capacity to manufacture the sails instead. The manufacturing cost per sail would be $99.02 for direct materials, $84.23 for direct labor, and $90 for overhead. The $90 overhead is based on $78,000 of annual fixed overhead that is allocated using normal...

  • Question 2 Cullumber Company purchases sails and produces sailboats. It currently produces 1,240 sailboats per year,...

    Question 2 Cullumber Company purchases sails and produces sailboats. It currently produces 1,240 sailboats per year, operating at normal capacity, which is about 80% of full capacity. Cullumber purchases sails at $255 each, but the company is considering using the excess capacity to manufacture the sails instead. The manufacturing cost per sail would be $91 for direct materials, $85 for direct labor, and $90 for overhead. The $90 overhead is based on $78,120 of annual fixed overhead that is allocated...

  • Novak Company purchases sails and produces sailboats. It currently produces 1,290 sailboats per year, operating at norma...

    Novak Company purchases sails and produces sailboats. It currently produces 1,290 sailboats per year, operating at normal capacity, which is about 80% of full capacity. Novak purchases sails at $273 each, but the company is considering using the excess capacity to manufacture the sails instead. The manufacturing cost per sail would be $91.59 for direct materials, $85.99 for direct labor, and $90 for overhead. The $90 overhead is based on $78,100 of annual fixed overhead that is allocated using normal...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT