PHP Basics Learning Mode

Consider the following script:

<html>
<head>
<title>
       This is a test script.
</title>
</head>
<body>
<?php
    echo 'This is some sample text';
?>
</body>
</html>

Which of the following tags is used in the php script?