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 Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? When the parameter is being declared as passed by reference When the function contains only one parameter When the function is being declared as a member of a class When the parameter is Boolean Never When the parameter is being declared as passed by reference When the function contains only one parameter When the function is being declared as a member of a class When the parameter is Boolean Never 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 ); 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 a is 4 and b is 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Dollar-sign Yen-sign Pond-sign Euro-sign Dollar-sign Yen-sign Pond-sign Euro-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP The value of __NAMESPACE__ is a string that contains the current namespace name. In global, un-namespaced code, it contains . . . . . . an empty string NULL gibberish value 0 an empty string NULL gibberish value 0 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What does PHP stand for?1. Personal Home Page2. Hypertext Preprocessor3. Pretext Hypertext Processor4. Preprocessor Home Page Both 2 and 4 Both 1 and 2 Both 1 and 3 Only 2 Both 2 and 4 Both 1 and 2 Both 1 and 3 Only 2 ANSWER DOWNLOAD EXAMIANS APP