To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
<title>TODO supply a title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<a href="Calculation.jsp">Click here for calculation</a>
Created on : 14 Sep, 2022, 2:54:31 PM
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<h1>Arithmetic Operations</h1>
1.The sum of 9 and 10 is ${9+10}<br>
2.The difference of 9 and 10 is ${9-10}<br>
3.The product of 9 and 10 is ${9*10}<br>
4.The division of 9 and 10 is ${9/10}<br>
5.The modulus of 9 and 10 is ${9%10}<br>
<h1>Relational Operations</h1>
6.Evaluating the expression 9 greater than 10: ${9>10}<br>
7.Evaluating the expression 9 less than 10: ${9<10}<br>
8.Evaluating the expression 9 greater than equal to 10: ${9>=10}<br>
9.Evaluating the expression 9 less than equal to 10: ${9<=10}<br>
10.Evaluating the expression 9 not equal 10: ${9!=10}<br>
11.Evaluating the expression 9 equal equal to 10: ${9==10}<br>
<h1>Logical Operations</h1>
12.${(2>3) and (3>4)}<br>