PHP Regular Expressions What will be the output of the following PHP code?$str = "Hello! My name is Cameron Fox. Coffee?";$find = array('/is/','/coffee/');$replace = array('/was/','/tea/');echo preg_replace ($find, $replace, $str); Hello! My name is Cameron Fox. tea? Hello! My name was Cameron Fox. tea? Hello! My name was Cameron Fox. Coffee? Hello! My name is Cameron Fox. Coffee? Hello! My name is Cameron Fox. tea? Hello! My name was Cameron Fox. tea? Hello! My name was Cameron Fox. Coffee? Hello! My name is Cameron Fox. Coffee? ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX stands for Portative Operating System Interface for Unix Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Linux Portative Operating System Interface for Unix Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Linux ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; is good SaladSaladSaladSaladSalad SaladSaladSaladSaladSalad is good is good Salad Salad is good is good SaladSaladSaladSaladSalad SaladSaladSaladSaladSalad is good is good Salad Salad is good ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-za-z] [A-z] [a-z] [A-Za-z0-9] [A-za-z] [A-z] [a-z] [A-Za-z0-9] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following regular expression matches any string containing zero or one p? p* P? p+ p# p* P? p+ p# ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5 PHP 5.2 PHP 4 PHP 5.3 PHP 5 PHP 5.2 PHP 4 PHP 5.3 ANSWER DOWNLOAD EXAMIANS APP