Which method rolls back the present transaction? undo() back() rollback() commit() TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following DBMSs do not have a native PHP extension? MySQL IBM DB/2 Microsoft SQL Server None of these PostgreSQL TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following databases has PHP supported almost since the beginning? SQL+ MySQL Oracle Database SQL TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements is used to create a table? CREATE TABLE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE table_name (column_name column_type); TRUE ANSWER : ? YOUR ANSWER : ?
Your confirmation form submits your choice, via the _______ method, to ________ GET index.php GET admin.php POST index.php POST admin.php TRUE ANSWER : ? YOUR ANSWER : ?
To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ .htaccess admin.php index.ini index.php TRUE ANSWER : ? YOUR ANSWER : ?
In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 TRUE ANSWER : ? YOUR ANSWER : ?
What does the DESC keyword do in the following query?<br/>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 TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements should be used to include a file? include ‘filename’; @include ‘filename’; #include ; #include ‘filename’; TRUE ANSWER : ? YOUR ANSWER : ?