Question from the PHP8 test

Write a PHP script that displays the sum of two numbers.

Easy

What will this script display ?

<?php

$a = 1;
$b = 2;

echo "sum: " . $a + $b;
Author: W3D TeamStatus: PublishedQuestion passed 778 times
Edit
2
Community EvaluationsNo one has reviewed this question yet, be the first!