1.
What does PHP stand for?
1. Personal Home Page
2. Hypertext Preprocessor
3. Pretext Hypertext Processor
4. Preprocessor Home Page

3.
Which of the following is/are a PHP code editor?
1. Notepad
2. Notepad++
3. Adobe Dreamweaver
4. PDT

4.
Which of the following must be installed on your computer so as to run PHP script?
1. Adobe Dreamweaver
2. PHP
3. Apache
4. IIS

6.
We can use _________ to comment a single line?
1. /?
2. //
3. #
4. /* */

7.
Which of the following php statement/statements will store 111 in variable num?
1. int $num = 111;
2. int mum = 111;
3. $num = 111;
4. 111 = $num;

8.
What will be the output of the following php code?
<?php
$num  = 1;
$num1 = 2;
print $num . "+". $num1;
?>

9.
What will be the output of the following php code?
<?php
$num  = "1";
$num1 = "2";
print $num+$num1;
?>

10.
Which of following variables can be assigned a value to it?
1. $3hello
2. $_hello
3. $this
4. $This