When a user confirms that he wishes to delete an entry, that entry’s URL is passed to a function which removes the entry from the __________ admin.php database function.inc.php index.php TRUE ANSWER : ? YOUR ANSWER : ?
The URLs in the administrative links won’t mean anything to admin.php unless you modify _________ .urlaccess .htaccess .adminaccess .htmlaccess TRUE ANSWER : ? YOUR ANSWER : ?
Which version of MySQL introduced the prepared statements? MySQL 4.2 MySQL 4.1 MySQL 4.3 MySQL 4.0 TRUE ANSWER : ? YOUR ANSWER : ?
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.dl extension=php_mysqli.dll extension=mysqli.dl extension=mysql.dll TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following methods recuperates any memory consumed by a result set? alloc() remover() destroy() free() TRUE ANSWER : ? YOUR ANSWER : ?
Which method returns the error code generated from the execution of the last MySQL function? errorno() errno() errornumber() errnumber() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements should be used to include a file? #include ‘filename’; @include ‘filename’; include ‘filename’; #include ; TRUE ANSWER : ? YOUR ANSWER : ?
The ............. statement is used to delete a table. DROP TABLE DEL TABLE REMOVE TABLE DELETE TABLE TRUE ANSWER : ? YOUR ANSWER : ?
Which method retrieves each row from the prepared statement result and assigns the fields to the bound results? fetch_row() get_row() fetch() row() TRUE ANSWER : ? YOUR ANSWER : ?
You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one. $_SET[‘admin’]. $_SET[‘url’]. $_GET[‘url’]. $_GET[‘admin’]. TRUE ANSWER : ? YOUR ANSWER : ?