Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1234 Error 2 1 1234 Error 2 1 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); 1 5 === 5 False Error 1 5 === 5 False Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? Never When the function is being declared as a member of a class When the parameter is Boolean When the parameter is being declared as passed by reference When the function contains only one parameter Never When the function is being declared as a member of a class When the parameter is Boolean When the parameter is being declared as passed by reference When the function contains only one parameter ANSWER DOWNLOAD EXAMIANS APP
Basic PHP How does the identity operator === compare two values? It returns True only if they are both of the same type and value It converts both values to strings and compares them It converts them to a common compatible data type and then compares the resulting values If the two values are strings, it performs a lexical comparison It bases its comparison on the C strcmp function exclusively It returns True only if they are both of the same type and value It converts both values to strings and compares them It converts them to a common compatible data type and then compares the resulting values If the two values are strings, it performs a lexical comparison It bases its comparison on the C strcmp function exclusively ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Pond-sign Dollar-sign Euro-sign Yen-sign Pond-sign Dollar-sign Euro-sign Yen-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP It is possible to create a hierarchy of namespaces in PHP. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP