Basic PHP PHP considers the following values as False All of Above both A and B the one-character string 0 the integer 0 constant NULL All of Above both A and B the one-character string 0 the integer 0 constant NULL ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below statements is equivalent to $add += $add ? $add = $add +$add $add = $add + $add + 1 $add = $add + 1 $add = $add $add = $add +$add $add = $add + $add + 1 $add = $add + 1 $add = $add ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$team = "arsenal";switch ($team) {case "manu":echo "I love man u";case "arsenal":echo "I love arsenal";case "manc":echo "I love manc"; } I love arsenalI love mancI love manu I love arsenalI love manc I love arsenal Error I love arsenalI love mancI love manu I love arsenalI love manc I love arsenal Error ANSWER DOWNLOAD EXAMIANS APP
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 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 It returns True only if they are both of the same type and value It converts both values to strings and compares them ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 2147483647 16384 65536 1048576 2147483647 16384 65536 1048576 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$total = "25 students";$more = 10;$total = $total + $more;echo "$total"; 35 students 25 students 35 Error 35 students 25 students 35 Error ANSWER DOWNLOAD EXAMIANS APP