Which one of the following statements should be used to include a file? #include ‘filename’; @include ‘filename’; include ‘filename’; #include ; 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() get_array() and get_row() fetch_array() and fetch_column() 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 one of the following methods can be used to diagnose and display information about a MySQL connection error? connect_error() connect_errno() mysqli_connect_errno() mysqli_connect_error() 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 : ?
The ............. statement is used to delete a table. DELETE TABLE DROP TABLE REMOVE TABLE DEL TABLE TRUE ANSWER : ? YOUR ANSWER : ?
The (|/) tells the server to match ___________ nothing forward slash backward slash either nothing or a forward slash TRUE ANSWER : ? YOUR ANSWER : ?
Transactions are used to treat sets of SQL statements atomically. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not an SQL aggregate function? CURRENT_DATE() AVG SUM MAX MIN TRUE ANSWER : ? YOUR ANSWER : ?