Basic PHP If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed? 12 Error 1 5 12 Error 1 5 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? $_10 &$something ${“MyVar”} $aVaR $10_somethings $_10 &$something ${“MyVar”} $aVaR $10_somethings ANSWER DOWNLOAD EXAMIANS APP
Basic PHP As the namespace size grows, using namespaces can become a little repetitious, but PHP also provides the . . . . . statement, which allows you to alias a specific namespace. php use grant label php use grant label ANSWER DOWNLOAD EXAMIANS APP
Basic PHP The value of __NAMESPACE__ is a string that contains the current namespace name. In global, un-namespaced code, it contains . . . . . . an empty string NULL 0 gibberish value an empty string NULL 0 gibberish value ANSWER DOWNLOAD EXAMIANS APP
Basic PHP With the introduction of namespaces, the same function name can be used in multiple places. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP