Basic PHP What is the limit of a PHP integer value? 16384 1048576 65536 2147483647 16384 1048576 65536 2147483647 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is/are a PHP code editor?1. Notepad2. Notepad++3. Adobe Dreamweaver4. PDT All of the mentioned Only 3 Only 4 1, 2 and 3 All of the mentioned Only 3 Only 4 1, 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
Basic PHP Which of the conditional statements is/are supported by PHP?1. if statements2. if-else statements3. if-elseif statements4. switch statements 2, 3 and 4 1, 2 and 4 All of the mentioned. Only 1 2, 3 and 4 1, 2 and 4 All of the mentioned. Only 1 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 parameter is being declared as passed by reference When the parameter is Boolean Never When the function contains only one parameter 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 Never When the function contains only one parameter When the function is being declared as a member of a class ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; true clueget false get true clueget false get ANSWER DOWNLOAD EXAMIANS APP