Q1. Write a program in PHP to calculate addition, subtraction, multiplication, division, modulas, power using operator. 1
<?php
$a=10;
$b=20;
$c=$a+$b;
echo "Sum of $a and $b is ".$c;
$d=$a-$b;
echo "<br>Subtraction of $a and $b is ".$d;
$e=$a*$b;
echo "<br>Multiplication of $a and $b is ".$e;
$f=$a/$b;
echo "<br>Division of $a and $b is ".$f;
$g=$a%$b;
echo "<br>Modulas of $a and $b is ".$g;
$h=$a**2;
echo "<br>$a Power 2 is ".$h;
?>