PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; No Output is returned Error Username must be all lowercase! Username is all lowercase! No Output is returned Error Username must be all lowercase! Username is all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? uppercase() strtoupper() struppercase() str_uppercase() uppercase() strtoupper() struppercase() str_uppercase() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following preg PHP function is used to do a find and replace on a string or an array? preg_findre() preg_replace() preg_find_replace() preg_find() preg_findre() preg_replace() preg_find_replace() preg_find() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$author = "nachiketh@example.com";$author = str_replace("a","@",$author);echo "Contact the author of this article at $author."; Cont@ct the @uthor of this @rticle @t n@chiketh@ex@mple.com Contact the author of this article at nachiketh@ex@mple.com Contact the author of this article at n@chiketh@ex@mple.com Error Cont@ct the @uthor of this @rticle @t n@chiketh@ex@mple.com Contact the author of this article at nachiketh@ex@mple.com Contact the author of this article at n@chiketh@ex@mple.com Error ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$url = "contact@examians.com";echo ltrim(strstr($url, "@"),"@"); contact@ contact@examians.com examians.com contact contact@ contact@examians.com examians.com contact ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which among the following is/are not a metacharacter?1. /a2. /A3. /b4. /B 2, 3 and 4 Only 1 2 and 4 1 and 3 2, 3 and 4 Only 1 2 and 4 1 and 3 ANSWER DOWNLOAD EXAMIANS APP