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 Which of the following PHP functions can be used for generating unique id’s? id() mdid() uniqueid() md5() id() mdid() uniqueid() md5() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ord ("hi"); 209 106 104 103 209 106 104 103 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo strtr("Hilla Warld","ia","eo"); ia eo Hilla Warld Hello World ia eo Hilla Warld Hello World ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The arguments in a function are evaluated from ..... left to right right to left sometimes left to right and sometimes right to left Always right to left left to right right to left sometimes left to right and sometimes right to left Always right to left ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will happen in this function call?function calc($price, $tax) {$total = $price + $tax;}$pricetag = 15;$taxtag = 3;calc($pricetag, $taxtag); Default Argument Value Type Hinting Call By Value Call By Reference Default Argument Value Type Hinting Call By Value Call By Reference ANSWER DOWNLOAD EXAMIANS APP