Basic PHP Which of the below symbols is a newline character? \n \r /n /r \n \r /n /r ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 3 Error 12 1+2 3 Error 12 1+2 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 function is being declared as a member of a class When the parameter is being declared as passed by reference When the parameter is Boolean When the function contains only one parameter Never When the function is being declared as a member of a class When the parameter is being declared as passed by reference When the parameter is Boolean When the function contains only one parameter Never ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below namespace declaration is correct? namespace ORA; namespace ORA_#; namespace ORA: namespace 1_RA; namespace ORA; namespace ORA_#; namespace ORA: namespace 1_RA; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following must be installed on your computer so as to run PHP script?1. Adobe Dreamweaver2. PHP3. Apache4. IIS 2, 3 and 4 Only 2 All of the mentioned. 2 and 3 2, 3 and 4 Only 2 All of the mentioned. 2 and 3 ANSWER DOWNLOAD EXAMIANS APP
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