Basic PHP How does the identity operator === compare two values? It converts them to a common compatible data type and then compares the resulting values It bases its comparison on the C strcmp function exclusively It converts both values to strings and compares them 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 them to a common compatible data type and then compares the resulting values It bases its comparison on the C strcmp function exclusively It converts both values to strings and compares them 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 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = 1;$num1 = 2;print $num . "+". $num1; Error 1.+.2 3 1+2 Error 1.+.2 3 1+2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... double quotes both A and B single quotes none of above double quotes both A and B single quotes none of above ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 2 Error 1 1234 2 Error 1 1234 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 011 111 000 123 011 111 000 123 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP ..... demand that you declare a data type when you create a variable. does not does does not does ANSWER DOWNLOAD EXAMIANS APP