PHP Databases Handling Which one of the following statements should be used to include a file? #include ‘filename’; #include ; include ‘filename’; @include ‘filename’; #include ‘filename’; #include ; include ‘filename’; @include ‘filename’; ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DELETE TABLE DROP TABLE TRUNCATE TABLE REMOVE TABLE DELETE TABLE DROP TABLE TRUNCATE TABLE REMOVE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 ANSWER DOWNLOAD EXAMIANS APP
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 rows with the same ID to be sorted by NAME in descending order 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 the result set to include a description of the NAME field It causes rows with the same ID to be sorted by NAME in descending order 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 the result set to include a description of the NAME field ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling 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() get_array() and get_row() fetch_array() and fetch_column() fetch_array() and fetch_row() get_array() and get_column() get_array() and get_row() fetch_array() and fetch_column() 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.dl extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=php_mysqli.dl extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll ANSWER DOWNLOAD EXAMIANS APP