Programming Examples
Create a HTML page that will display following contents as it is on the web page
Polynomial Expression
6x4+3x3+3x2+2x+1
Normal Expression
a+b+c/d+e
Solution<h1>Polynomial Expression</h1>
<p>
6x<sup>4</sup> + 3x<sup>3</sup> + 3x<sup>2</sup> + 2x + 1
</p>
<h1>Normal Expression</h1>
<p>
a + b + c / d + e
</p>
▶ RUN Output/ Explanation: