PHP Functions What will be the output of the following PHP code?echo lcfirst("welcome to India"); welcome to India welcome to india Welcome to india Welcome to India welcome to India welcome to india Welcome to india Welcome to India ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Type Hinting was introduced in which version of PHP? PHP 6 PHP 5.3 PHP 5 PHP 4 PHP 6 PHP 5.3 PHP 5 PHP 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following is the right way of defining a function in PHP? function fumctionName(parameters) { function body } functionName(parameters) { function body } function { function body } data type functionName(parameters) { function body } function fumctionName(parameters) { function body } functionName(parameters) { function body } function { function body } data type functionName(parameters) { function body } ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . returns a new DateTime object. date() getdate() date_sunrise() date_create() date() getdate() date_sunrise() date_create() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Objects Arrays None of above Both A & B Objects Arrays None of above Both A & B ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am b';}echo 'I am a';}a();a(); I am a Error I am b Error I am bI am a I am a Error I am b Error I am bI am a ANSWER DOWNLOAD EXAMIANS APP