PHP Functions What will be the output of the following PHP code?echo(atan(0.50)); 0.46364760900081 0.11845976421345 1 0.23568451142521 0.46364760900081 0.11845976421345 1 0.23568451142521 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function string(){echo strstr("Hello world!", 111);}string(); 111 No Output Hello world! o world! 111 No Output Hello world! o world! ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The arguments in a function are evaluated from ..... right to left Always right to left sometimes left to right and sometimes right to left left to right right to left Always right to left sometimes left to right and sometimes right to left left to right ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . returns a new DateTime object. date() date_create() date_sunrise() getdate() date() date_create() date_sunrise() getdate() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following PHP functions can be used to build a function that accepts any number of arguments? get_argc() func_get_argc() func_get_argv() get_argv() get_argc() func_get_argc() func_get_argv() get_argv() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo lcfirst("welcome to my India"); Welcome to my India welcome to my India Welcome to my india welcome to my india Welcome to my India welcome to my India Welcome to my india welcome to my india ANSWER DOWNLOAD EXAMIANS APP