Computer Science, asked by Fernandosea, 5 months ago

Write the output for the following:
<?php

echo “ Welcome”

$a = 20;

$b = 15;

echo $a;

echo $b;

$c = $a % $b;

echo $c;​

Answers

Answered by ajitpatil102001
1

Answer:

Correct one answer is 1...bcz 20%15=1....so ans is 1

Similar questions