Assinale a alternativa que apresenta o resultado apresentado no browser após a execução do código a seguir.
<html>
<body>
<?php
<body>
<?php
$stringA = 'Instituto';
$stringB = 'Federal';
echo(strtoupper($stringA . $stringB.));
$stringB = 'Federal';
echo(strtoupper($stringA . $stringB.));
?>
</body>
</html>
</body>
</html>