web technology Online Quiz - 110
Description: web technology Online Quiz - 110 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
What is a Universe
Which of following commenting is supported by Php
Which of following function return 1 when output is successful?
Which of followng statement is more suitable if you want to output a blend of static text and dynamic information stored within one or several variables?
Which of the following type specifier is invalid in printf() functions?
For integer data type PHP 5 and earlier supported?
In mail($param2, $param2, $param3, $param4), the $param2 contains:
When uploading a file if the UPLOAD_ERR-OK contains value 0 it means?
fopen($file_doc,"r+"); opens a file for?
To work with remote files in PHP you need to enable?
Which of the following mode of fopen() function opens a file only for writing. If a file with that name does not exist, attempts to create anew file. If the file exist, place the file pointer at the end of the file after all other data?
The function setcookie( ) is used to:
When you need to obtain the ASCII value of a character which of the following function you apply in PHP?
The following piece of script will output: $email='[email protected]'; $new=strstr($email, '@'); print $new; ?>
When compared to the compiled program, scripts run:
The most portable version of PHP tag that is compatible to embed in XML or XHTML too is:
The output of ofllowing script would be $somerar=15; function ad it () { GLOBAL $somevar; $somerar++ ; echo "somerar is $somerar"; } addit ();
Variable scope on which a variable does not loose its value when the function exists and use that value if the function is called again is:
Which of the following delimiting method is known as string Interpolation?
Identify the variable scope that is not supported by PHP?