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 bases its comparison on the C strcmp function exclusively 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 returns True only if they are both of the same type and value It converts both values to strings and compares them It bases its comparison on the C strcmp function exclusively 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 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP When a simple data type is casted to an array, an array is created with the original value in the first element. True False True False ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which statement will output $x on the screen? echo “/$x”; echo “$$x”; echo “\$x”; echo “$x;”; echo “/$x”; echo “$$x”; echo “\$x”; echo “$x;”; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following php statement/statements will store 111 in variable num?1. int $num = 111;2. int mum = 111;3. $num = 111;4. 111 = $num; All of the mentioned Only 3 Both 1 and 2 Only 1 All of the mentioned Only 3 Both 1 and 2 Only 1 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .xml .php .ph .html .xml .php .ph .html ANSWER DOWNLOAD EXAMIANS APP
Basic PHP It is possible to create a hierarchy of namespaces in PHP. TRUE FALSE TRUE FALSE ANSWER DOWNLOAD EXAMIANS APP