PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good 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."; Contact the author of this article at n@chiketh@ex@mple.com Contact the author of this article at nachiketh@ex@mple.com Cont@ct the @uthor of this @rticle @t n@chiketh@ex@mple.com Error Contact the author of this article at n@chiketh@ex@mple.com Contact the author of this article at nachiketh@ex@mple.com Cont@ct the @uthor of this @rticle @t n@chiketh@ex@mple.com Error ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Say we have two compare two strings which of the following function/functions can you use?1. strcmp()2. strcasecmp()3. strspn()4. strcspn() 3 and 4 All of the mentioned None of the mentioned 1 and 2 3 and 4 All of the mentioned None of the mentioned 1 and 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions PHP has long supported two regular expression implementations known as _______ and _______.1. Perl2. PEAR3. Pearl4. POSIX 1 and 4 1 and 2 2 and 3 2 and 4 1 and 4 1 and 2 2 and 3 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
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 Username is all lowercase! Error Username must be all lowercase! No Output is returned Username is all lowercase! Error Username must be all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$foods = array("pasta", "steak", "fish", "potatoes");$food = preg_grep("/^s/", $foods);print_r($food); Array ( [1] => steak ) Array ( [0] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [3] => potatoes ) Array ( [1] => steak ) Array ( [0] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [3] => potatoes ) ANSWER DOWNLOAD EXAMIANS APP