PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? str_uppercase() uppercase() struppercase() strtoupper() str_uppercase() uppercase() struppercase() strtoupper() 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 Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.3 PHP 4.1 PHP 4.0 PHP 4.2 PHP 4.3 PHP 4.1 PHP 4.0 PHP 4.2 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$name = "What is your name?";if (preg_match("/name/"),$name)echo "My name is Will Pitt ";elseecho "My name is not Will Pitt ";if (preg_match("/are/"))echo "I am great"else echo "I am not great"; My name is not Will Pitt I am not great My name is not Will Pitt I am great My name is Will Pitt I am not great My name is Will Pitt I am great My name is not Will Pitt I am not great My name is not Will Pitt I am great My name is Will Pitt I am not great My name is Will Pitt I am great 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!"; Error No Output is returned Username must be all lowercase! Username is all lowercase! Error No Output is returned Username must be all lowercase! Username is all lowercase! 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() All of the mentioned 3 and 4 None of the mentioned 1 and 2 All of the mentioned 3 and 4 None of the mentioned 1 and 2 ANSWER DOWNLOAD EXAMIANS APP