PHP MCQ Questions and Answers
Practice ModeShowing 10 of 130 questions
Q81
Is it possible to submit a form with out a submit button?
Answer: Option A
Q82
Full form of PHP
Answer: Option B
Q83
What is the expansion of LAMP?
Answer: Option B
Q84
In php Which method is used to getting browser properties?
Answer: Option A
Q85
Which of the following function is used to pick one or more random values from PHP Array?
Answer: Option A
Q86
<?php
$x=array(1,3,2,3,7,8,9,7,3);
$y=array_count_values($x);
echo $y[8];
Answer: Option B
Q87
Assume that your php file 'index.php' in location c:/apache/htdocs/phptutor/index.php. If you used $_SERVER['PHP_SELF'] function in your page, then what is the return value of this function ?
Answer: Option B
Q88
Which operator is used to concatenate two strings in php?
Answer: Option A
Q89
Are there regular expressions in PHP?
Answer: Option B
Q90
In PHP, which of the following function is used to insert content of one php file into another php file before server executes it
Answer: Option C