PHP Databases Handling Which one of the following statements should be used to include a file? @include ‘filename’; include ‘filename’; #include ; #include ‘filename’; @include ‘filename’; include ‘filename’; #include ; #include ‘filename’; ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following is not an SQL aggregate function? MAX CURRENT_DATE() SUM AVG MIN MAX CURRENT_DATE() SUM AVG MIN ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling What will happen at the end of the following sequence of SQL commands?BEGIN TRANSACTIONDELETE FROM MYTABLE WHERE ID=1DELETE FROM OTHERTABLEROLLBACK TRANSACTION The contents of OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged The contents of OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ backward slash nothing either nothing or a forward slash forward slash backward slash nothing either nothing or a forward slash forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods can be used to diagnose and display information about a MySQL connection error? connect_errno() mysqli_connect_errno() connect_error() mysqli_connect_error() connect_errno() mysqli_connect_errno() connect_error() mysqli_connect_error() 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=mysqli.dl extension=mysql.dll extension=php_mysqli.dl extension=php_mysqli.dll extension=mysqli.dl extension=mysql.dll extension=php_mysqli.dl extension=php_mysqli.dll ANSWER DOWNLOAD EXAMIANS APP