Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? 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 function contains only one parameter When the parameter is Boolean 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 function contains only one parameter When the parameter is Boolean ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .ph .php .html .xml .ph .php .html .xml ANSWER DOWNLOAD EXAMIANS APP
Basic PHP strval() Accepts a value and converts it into an string dictionary Accepts a value and converts it into string equivalent None of above Accepts a value and converts it into a string array Accepts a value and converts it into an string dictionary Accepts a value and converts it into string equivalent None of above Accepts a value and converts it into a string array ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below symbols is a newline character? /r \r /n \n /r \r /n \n ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What does PHP stand for?1. Personal Home Page2. Hypertext Preprocessor3. Pretext Hypertext Processor4. Preprocessor Home Page Both 1 and 3 Both 2 and 4 Only 2 Both 1 and 2 Both 1 and 3 Both 2 and 4 Only 2 Both 1 and 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following code?$foo = 'Bob';$bar = &$foo;$bar = "My name is $bar";echo $bar;echo $foo; My name is BobMy name is Bob Error My name is BobBob My name is Bob Bob My name is BobMy name is Bob Error My name is BobBob My name is Bob Bob ANSWER DOWNLOAD EXAMIANS APP