PHP Databases Handling What does the DESC keyword do in the following query?SELECT * FROM MY_TABLE WHERE ID > 0 ORDER BY ID, NAME DESC It causes the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in descending order It causes the result set to include a description of the NAME field It causes rows with the same ID to be sorted by NAME in ascending order It causes the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in descending order It causes the result set to include a description of the NAME field It causes rows with the same ID to be sorted by NAME in ascending order ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? query_send() query() sendquery() send_query() query_send() query() sendquery() send_query() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ either nothing or a forward slash nothing backward slash forward slash either nothing or a forward slash nothing backward slash forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension? extension=php_mysqli.dll extension=mysql.dll extension=mysqli.dl extension=php_mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=mysqli.dl extension=php_mysqli.dl ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling If there is no error, then what will the error() method return? FALSE Empty String 0 TRUE FALSE Empty String 0 TRUE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is used to recuperating prepared statements resources? finish() end() close() final() finish() end() close() final() ANSWER DOWNLOAD EXAMIANS APP