Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 011 123 111 000 011 123 111 000 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is/are a PHP code editor?1. Notepad2. Notepad++3. Adobe Dreamweaver4. PDT 1, 2 and 3 Only 4 Only 3 All of the mentioned 1, 2 and 3 Only 4 Only 3 All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Yen-sign Euro-sign Dollar-sign Pond-sign Yen-sign Euro-sign Dollar-sign Pond-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 . . . . . . NULL 0 an empty string gibberish value NULL 0 an empty string gibberish value ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); 1 5 === 5 False Error 1 5 === 5 False Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1234 Error 1 2 1234 Error 1 2 ANSWER DOWNLOAD EXAMIANS APP