Basic PHP Who is the father of PHP? Rasmus Lerdorf List Barely Drek Kolkevi Willam Makepiece Rasmus Lerdorf List Barely Drek Kolkevi Willam Makepiece ANSWER DOWNLOAD EXAMIANS APP
Basic PHP All classes in the same namespace or subnamespace don’t have to the declared in the same PHP file. TRUE FALSE TRUE FALSE 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 . . . . . . 0 an empty string NULL gibberish value 0 an empty string NULL gibberish value ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which statement will output $x on the screen? echo “$x;”; echo “$$x”; echo “\$x”; echo “/$x”; echo “$x;”; echo “$$x”; echo “\$x”; echo “/$x”; 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(); 111 011 000 123 111 011 000 123 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Dollar-sign Yen-sign Euro-sign Pond-sign Dollar-sign Yen-sign Euro-sign Pond-sign ANSWER DOWNLOAD EXAMIANS APP