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
<!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>


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...
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: 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. 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 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,...
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...
Write a C++ program that uses a two dimensional array to display a table of probabilities for a pair of rolling dice. Your custom assigned range of values of each die are: 5 up to and including 10. Section 1 of Program - Specifications: The top row of the table, left to right, and the left column of the array, top to bottom, must contain the assigned range of values displayed on each of the die in ascending order populated...
Write a WebGL program that displays a rotating pendulum. The pendulum bob is free to rotate through 360 degrees about an anchor point at the center of the canvas. The pendulum has the following three components. 1) The anchor point is a green square centered at the origin (0,0) with point size = 5 pixels. 2) The bob is a blue hexagon of radius r = 0.1. Render this with a triangle fan centered at the origin (along with a...
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, 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 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...