PHP Databases Handling Which version of MySQL introduced the prepared statements? MySQL 4.0 MySQL 4.3 MySQL 4.2 MySQL 4.1 MySQL 4.0 MySQL 4.3 MySQL 4.2 MySQL 4.1 ANSWER DOWNLOAD EXAMIANS APP
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? AVG MIN MAX SUM CURRENT_DATE() AVG MIN MAX SUM CURRENT_DATE() 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 both OTHERTABLE and MYTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of OTHERTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements instantiates the mysqli class? mysqli = new mysqli() mysqli->new.mysqli() $mysqli = new mysqli() $mysqli->new.mysqli() mysqli = new mysqli() mysqli->new.mysqli() $mysqli = new mysqli() $mysqli->new.mysqli() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements is used to create a table? CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE table_name (column_type column_name); ANSWER DOWNLOAD EXAMIANS APP