Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; get true false clueget get true false clueget ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP ..... demand that you declare a data type when you create a variable. does does not does does not ANSWER DOWNLOAD EXAMIANS APP
Basic PHP You can test the type of any variable with the ..... function. whattype() settype() showtype() gettype() whattype() settype() showtype() gettype() ANSWER DOWNLOAD EXAMIANS APP
Basic PHP strval() 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 Accepts a value and converts it into an string dictionary Accepts a value and converts it into string equivalent ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? Never When the parameter is being declared as passed by reference When the function contains only one parameter When the parameter is Boolean When the function is being declared as a member of a class Never When the parameter is being declared as passed by reference When the function contains only one parameter When the parameter is Boolean When the function is being declared as a member of a class ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP does not support numbers written in hexadecimal, octal or scientific notation. False True False True ANSWER DOWNLOAD EXAMIANS APP