PHP Functions Which of the following PHP functions can be used to get the current memory usage? get_memory_usage() get_peak_usage() get_usage() get_memory_peak_usage() get_memory_usage() get_peak_usage() get_usage() get_memory_peak_usage() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function string(){echo strstr("Hello world!", 111);}string(); No Output Hello world! 111 o world! No Output Hello world! 111 o world! ANSWER DOWNLOAD EXAMIANS APP
PHP Functions strlen() returns the length of the string on success and . . . . if the string is empty. Garbage value NULL -1 0 Garbage value NULL -1 0 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Both A & B Objects None of above Arrays Both A & B Objects None of above Arrays ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ord ("hi"); 209 104 106 103 209 104 106 103 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 WorksThis Too Seems To Work This Too Seems To Work This Works ERROR This WorksThis Too Seems To Work This Too Seems To Work This Works ANSWER DOWNLOAD EXAMIANS APP