The ............. statement is used to delete a table. DEL TABLE REMOVE TABLE DROP TABLE DELETE TABLE TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following methods is used to execute the statement after the parameters have been bound? bind_param() bound_param() bind_result() bound_result() TRUE ANSWER : ? YOUR ANSWER : ?
Which of the methods are used to manage result sets using both associative and indexed arrays? fetch_array() and fetch_row() get_array() and get_column() fetch_array() and fetch_column() get_array() and get_row() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements should be used to include a file? include ‘filename’; @include ‘filename’; #include ; #include ‘filename’; TRUE ANSWER : ? YOUR ANSWER : ?
If there is no error, then what will the error() method return? 0 Empty String FALSE TRUE TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements can be used to select the database? $mysqli=select_db(‘databasename’); $mysqli->select_db(‘databasename’); mysqli=select_db(‘databasename’); mysqli->select_db(‘databasename’); 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=mysqli.dl extension=php_mysqli.dll extension=mysql.dll TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following methods recuperates any memory consumed by a result set? remover() alloc() destroy() free() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements is used to create a table? CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); TRUE ANSWER : ? YOUR ANSWER : ?
The (|/) tells the server to match ___________ nothing backward slash either nothing or a forward slash forward slash TRUE ANSWER : ? YOUR ANSWER : ?