MCQOPTIONS
Bookmark
Saved Bookmarks
→
Php
→
Online Quiz in Php
→
What will be the output of the following PHP code?..
1.
What will be the output of the following PHP code?%!
A.
FALSE
B.
TRUE
C.
NULL
D.
ERROR
Answer» D. ERROR
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
What will be the output of the following PHP code?<?phpfunction convertSpace($string){ return str_replace("_", " ", $string);}$string = "Peter_is_a_great_guy!";echo filter_var($string, FILTER_CALLBACK, array("options"=>"convertSpace"));?>%!
What will be the output of the following PHP code?<?php$value = 'car';$result = filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);?>%!
Which one of the following filter checks if variable of specified type exists?%!
What will be the output of the following PHP code?<?php$var=300;$int_options = array("options"=>array ("min_range"=>0, "max_range"=>256));if (!filter_var($var, FILTER_VALIDATE_INT, $int_options)) echo("Integer is not valid");else echo("Integer is valid");?>%!
*/*_Which one of the following does not describe a validating filter??
_ What will be the output of the following PHP code?<?php$num = "123";if (!filter_var($num, FILTER_VALIDATE_INT)) echo("Integer is not valid");else echo("Integer is valid");?>$?
Which one of the following filter is used to filter several variables with the same or different filters?$?
Which of the following is/are an external data?1. Cookies2. Input data from a form3. Server Variables4. Web services data
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply