When you are building administrative links you’ll need to accept two arguments, which of the following are they? URL of previous entry and URL of the entry you are working with URL of previous entry and previous page The current page and URL of the entry you are working with The current page and previous page TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following DBMSs do not have a native PHP extension? MySQL Microsoft SQL Server PostgreSQL None of these IBM DB/2 TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following methods is responsible for sending the query to the database? sendquery() query() send_query() query_send() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements is used to create a table? CREATE table_name (column_type column_name); CREATE TABLE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_name column_type); 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 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 It causes rows with the same ID to be sorted by NAME in descending order TRUE ANSWER : ? YOUR ANSWER : ?
When a user confirms that he wishes to delete an entry, that entry’s URL is passed to a function which removes the entry from the __________ admin.php function.inc.php index.php database TRUE ANSWER : ? YOUR ANSWER : ?
The (|/) tells the server to match ___________ nothing either nothing or a forward slash forward slash backward slash TRUE ANSWER : ? YOUR ANSWER : ?
Which of the methods are used to manage result sets using both associative and indexed arrays? get_array() and get_column() get_array() and get_row() fetch_array() and fetch_row() fetch_array() and fetch_column() TRUE ANSWER : ? YOUR ANSWER : ?
Once your application can generate administrative links, you need to load those links into _________ start.php index.ini php.ini index.php TRUE ANSWER : ? YOUR ANSWER : ?
([w-]+) will match ___________ one or more word characters and/or hypens one or more word characters one or more word characters and hypens one word characters TRUE ANSWER : ? YOUR ANSWER : ?