PHP Functions The below statement will return.$Var = substr(""abcdef"", -4, 1); returns "f" returns "cd" returns "c" returns "d" returns "f" returns "cd" returns "c" returns "d" ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 10 seconds 1 second 1 microseconds 100 microseconds 10 seconds 1 second 1 microseconds 100 microseconds 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
PHP Functions It is always necessary to use parentheses with the print function. False True False True ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function A1($x) { switch($x) {case 1://this statement is the same as if($x == 1)echo 'Case 1 was executed.';break;case 2://this statement is the same asif($x == 2)echo 'Case 2 was executed.';break;case 3://this statement is the same asif($x == 3)echo 'Case 3 was executed.';break;case 4://this statement is the same asif($x == 4)echo 'Case 4 was executed.';break;default://this statement is the same as if $x does not equal the other conditionsecho 'Default was executed.';break;}}A1(9); Case 1 was executed Case 2 was executed Case 4 was executed Default was executed Case 1 was executed Case 2 was executed Case 4 was executed Default was executed ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function test($int){if ($int == 1)echo "This Works";if ($int == 2)echo "This Too Seems To Work";}test(1);TEST(2); ERROR This Works This WorksThis Too Seems To Work This Too Seems To Work ERROR This Works This WorksThis Too Seems To Work This Too Seems To Work ANSWER DOWNLOAD EXAMIANS APP