Basic PHP Which of the following is not valid PHP code? $_10 &$something $aVaR $10_somethings ${“MyVar”} $_10 &$something $aVaR $10_somethings ${“MyVar”} 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 What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 1+2 Error 3 12 1+2 Error 3 12 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP strval() Accepts a value and converts it into an string dictionary Accepts a value and converts it into a string array Accepts a value and converts it into string equivalent None of above Accepts a value and converts it into an string dictionary Accepts a value and converts it into a string array Accepts a value and converts it into string equivalent None of above ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False the one-character string 0 the integer 0 constant NULL both A and B All of Above the one-character string 0 the integer 0 constant NULL both A and B All of Above ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Dollar-sign Euro-sign Yen-sign Pond-sign Dollar-sign Euro-sign Yen-sign Pond-sign ANSWER DOWNLOAD EXAMIANS APP