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 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 PHP considers the following values as False the integer 0 All of Above constant NULL both A and B the one-character string 0 the integer 0 All of Above constant NULL both A and B the one-character string 0 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1234 2 1 Error 1234 2 1 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; get false true clueget get false true clueget ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$team = "arsenal";switch ($team) {case "manu":echo "I love man u";case "arsenal":echo "I love arsenal";case "manc":echo "I love manc"; } Error I love arsenal I love arsenalI love mancI love manu I love arsenalI love manc Error I love arsenal I love arsenalI love mancI love manu I love arsenalI love manc ANSWER DOWNLOAD EXAMIANS APP