What does PHP stand for? July 3, 2022July 3, 2022 administrator What does PHP stand for?Hypertext Preprocessor.Well Done. Your Answer is Correct Keep it Up!Pretext Hypertext ProcessorPreprocessor Home PageNone of the Option is Correct
PHP files have a default file extension of July 3, 2022July 3, 2022 administrator PHP files have a default file extension ofphpWell Done. Your Answer is Correct Keep it Up!htmljsasp
A PHP script should start with ___ and end with ___ July 3, 2022July 3, 2022 administrator A PHP script should start with ___ and end with ___Well Done. Your Answer is Correct Keep it Up!php
Which of the following is a PHP code editor? July 3, 2022July 3, 2022 administrator Which of the following is a PHP code editor?All Options are CorrectWell Done. Your Answer is Correct Keep it Up!Sublime TextNotepad++Notepad
Which of the following must be installed on your computer so as to run PHP script? July 3, 2022July 3, 2022 administrator Which of the following must be installed on your computer so as to run PHP script?ApacheWell Done. Your Answer is Correct Keep it Up!Adobe DreamweaverSublimeNone of the Option is Correct
PHP can be run on Microsoft Windows IIS(Internet Information Server) July 3, 2022July 3, 2022 administrator PHP can be run on Microsoft Windows IIS(Internet Information Server)TRUEWell Done. Your Answer is Correct Keep it Up!FALSENothingNone of the Option is Correct
The die() and exit() functions do the exact same thing. July 3, 2022July 3, 2022 administrator The die() and exit() functions do the exact same thing.TRUEWell Done. Your Answer is Correct Keep it Up!FALSENothingNone of the Option is Correct
How do you create a cookie in PHP? July 3, 2022July 3, 2022 administrator How do you create a cookie in PHP?setcookie()Well Done. Your Answer is Correct Keep it Up!makecookie()createcookieNone of the Option is Correct
Which version of PHP introduced Try/catch Exception? July 3, 2022July 3, 2022 administrator Which version of PHP introduced Try/catch Exception?PHP 5Well Done. Your Answer is Correct Keep it Up!PHP 6PHP 4PHP 5.3
What will be the output of the following php code? $num = 1; $num1 = 2; print $num . “”+””. $num1; July 3, 2022July 3, 2022 administrator “What will be the output of the following php code? $num = 1; $num1 = 2; print $num . “”+””. $num1;1+2Well Done. Your Answer is Correct Keep it Up!34$num . “”+””. $num1;“