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 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 What does the DESC keyword do in the following query?SELECT * FROM MY_TABLE WHERE ID > 0 ORDER BY ID, NAME DESC 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 the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in ascending 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 the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in ascending order ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The updated MySQL extension released with PHP 5 is typically referred to as. MySQL mysqly mysql mysqli MySQL mysqly mysql mysqli ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.0 PHP 5.1 PHP 5.2 PHP 5.3 PHP 5.0 PHP 5.1 PHP 5.2 PHP 5.3 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? query() sendquery() query_send() send_query() query() sendquery() query_send() send_query() ANSWER DOWNLOAD EXAMIANS APP