Basic PHP Which of the below symbols is a newline character? /r /n \r \n /r /n \r \n ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? $aVaR &$something $10_somethings ${“MyVar”} $_10 $aVaR &$something $10_somethings ${“MyVar”} $_10 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. False True False True ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below statements is equivalent to $add += $add ? $add = $add + $add + 1 $add = $add + 1 $add = $add $add = $add +$add $add = $add + $add + 1 $add = $add + 1 $add = $add $add = $add +$add ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below namespace declaration is correct? namespace 1_RA; namespace ORA; namespace ORA: namespace ORA_#; namespace 1_RA; namespace ORA; namespace ORA: namespace ORA_#; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed? Error 12 5 1 Error 12 5 1 ANSWER DOWNLOAD EXAMIANS APP