Basic PHP What does PHP stand for?1. Personal Home Page2. Hypertext Preprocessor3. Pretext Hypertext Processor4. Preprocessor Home Page Both 2 and 4 Only 2 Both 1 and 3 Both 1 and 2 Both 2 and 4 Only 2 Both 1 and 3 Both 1 and 2 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; Only 3 All of the mentioned Only 1 Both 1 and 2 Only 3 All of the mentioned Only 1 Both 1 and 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Rasmus Lerdorf Willam Makepiece Drek Kolkevi List Barely Rasmus Lerdorf Willam Makepiece Drek Kolkevi List Barely ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; Error 1234 2 1 Error 1234 2 1 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the value of $a and $b after the function call?function doSomething( &$arg ) {$return = $arg;$arg += 1;return $return;}$a = 3;$b = doSomething( $a ); a is 4 and b is 3 Both are 3 Both are 4 a is 3 and b is 4 a is 4 and b is 3 Both are 3 Both are 4 a is 3 and b is 4 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... none of above double quotes single quotes both A and B none of above double quotes single quotes both A and B ANSWER DOWNLOAD EXAMIANS APP