Vidyalelo
PHP · all questions

Basic PHP
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

54

Questions

2/3

Page

Pick an option on a question to see the right answer and solution.

Which of the below symbols is a newline character?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$num = 10;
echo 'What is her age? \n She is $num years old';
?>

Select an option to see the answer and solution.

Which of the conditional statements is/are supported by PHP? 1. if statements 2. if-else statements 3. if-elseif statements 4. switch statements

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$team = "arsenal";
switch ($team) 
{
case "manu":
  echo "I love man u";
case "arsenal":
  echo "I love arsenal";
case "manc":
  echo "I love manc"; 
}
?>

Select an option to see the answer and solution.

Which of the looping statements is/are supported by PHP?
1. for loop
2. while loop
3. do-while loop
4. foreach loop

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$user = array("Ashley", "Bale", "Shrek", "Blank");
for (x < count(x++)
{
  if (x] == "Shrek") continue;
  printf (x]); 
}
?>

Select an option to see the answer and solution.

If a == 12) ? 5 : 1 is executed?

Select an option to see the answer and solution.

What is the value of b after the function call?
<?php
function doSomething( &$arg ) 
{
  arg;
  $arg += 1;
  return $return;	
}
$a = 3;
a );
?>

Select an option to see the answer and solution.

Who is the father of PHP?

Select an option to see the answer and solution.

How does the identity operator === compare two values?

Select an option to see the answer and solution.

Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?

Select an option to see the answer and solution.

Variables always start with a ........ in PHP

Select an option to see the answer and solution.

PHP is an open source software.

Select an option to see the answer and solution.

Which of the following is not valid PHP code?

Select an option to see the answer and solution.

PHP runs on different platforms (Windows, Linux, Unix, etc.)

Select an option to see the answer and solution.

You can test the type of any variable with the ..... function.

Select an option to see the answer and solution.

Assigning the empty string (like ' ') to a variable automatically renders it empty.

Select an option to see the answer and solution.

If you echo a Boolean variable, the value FALSE displays as a .... and the value TRUE echoes as a .....

Select an option to see the answer and solution.

When a simple data type is casted to an array, an array is created with the original value in the first element.

Select an option to see the answer and solution.

String values must be enclosed in ......

Select an option to see the answer and solution.