PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? strtoupper() str_uppercase() uppercase() struppercase() strtoupper() str_uppercase() uppercase() struppercase() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions finds the last occurrence of a string, returning its numerical position? strpos() strlast() strlastpos() strrpos() strpos() strlast() strlastpos() strrpos() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? implode() concat() concatenate() explode() implode() concat() concatenate() explode() 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!"; 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! 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 Salad is good SaladSaladSaladSaladSalad is good is good Salad is good SaladSaladSaladSaladSalad Salad is good SaladSaladSaladSaladSalad is good is good Salad ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5 PHP 5.3 PHP 4 PHP 5.2 PHP 5 PHP 5.3 PHP 4 PHP 5.2 ANSWER DOWNLOAD EXAMIANS APP