MCQOPTIONS
Bookmark
Saved Bookmarks
→
Php
→
Online Quiz in Php
→
Which among the following is/are not a metacharact..
1.
Which among the following is/are not a metacharacter?
A.
B
B.
a
C.
A
D.
b
E.
None of these
Answer» C. A
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
What will be the output of the following PHP code?<br><pre class="prettyprint lang-c"><?php<br>$url = "interview@mania.com";<br>echo ltrim(strstr($url, "@"),"@");<br>?><br></pre>
What will be the output of the following PHP code?<br><pre class="prettyprint lang-c"><?php<br>$contact = "inter0view@mania.com";<br>$contact = str_replace("0","@",$contact);<br>echo "Contact to the Interview Mania web designer at $contact.";<br>?><br></pre>
What will be the output of the following PHP code?<br><pre class="prettyprint lang-c"><?php<br>$Message = "this is important message...";<br>echo ucwords($Message);<br>?><br></pre>
What will be the output of the following PHP code?<br><pre class="prettyprint lang-c"><?php<br>echo str_pad("Salad", 10)." is good.";<br>?><br></pre>
What will be the output of the following PHP code?<br><pre class="prettyprint lang-c"><?php <br/>$cars = array("Datsun", "Jeep", "Lada", "Spyker");<br>$car = preg_grep("/^L/", $cars);<br>print_r($car);<br>?><br></pre>
What will be the output of the following PHP code?<br><pre class="prettyprint lang-c"><?php <br/>$name = "mAnjeSh";<br>if (ereg("([^a-z])",$name))<br>echo "Name must be all lowercase!";<br>else<br>echo "Name is all lowercase!";<br>?><br></pre>
Which among the following is/are not a metacharacter?
Which of the following would be a potential match for the Perl-based regular expression /fo{2,4}/ ?
PHP has long supported two regular expression implementations known as _______ and _______.
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply