Programming Examples
Create an HTML page containing the following polynomial expression.
Create an HTML page containing the following polynomial expression.
4x3+3x2−2x+7
Solution<!DOCTYPE html>
<html>
<head>
<title>Polynomial Expression</title>
</head>
<body>
<h2>Polynomial Expression</h2>
<p>
4x<sup>3</sup> + 3x<sup>2</sup> − 2x + 7
</p>
</body>
</html>
Output