NEW
Font size
WorksheetsAWD Quiz #3
Total questions: 10
Worksheet time: 5mins
Data passed using the _____ method will not be visible in query parameters in browser URL.
PARSE
POST
GET
INTERPRETER
This type of input allows you to pass along information to the form without showing the value to the user.
Close
Hidden
Invisible
Micro
This element allows you to check a box to make a selection.
Radio
Textbox
Select
Checkbox
An element that allows you to enter a variety of options that will drop down for selection.
Checkbox
Select
Radio
Textbox
The mysqli_open() opens a connection to the database.
TRUE
FALSE
This function is used to send a query or command to a MySQL connection.
mysqli_query()
mysqli_connect()
msqli_command()
mysqli_send()
In database management, it is a question or a request.
Inquiry
Command
Function
Query
Which of the following is not an SQL command?
UPDATE
VIEW
SELECT
DELETE
What is the syntax of adding data to database?
INSERT INTO table_name VALUES (value1, value2, value3, ...);
INSERT INTO table_name VALUES "value1", "value2", "value3", ...)
INSERT VALUES (value1, value2, value3, ...) in table_name
What is the syntax of deleting data in databse?
DELETE FROM table_name VALUE some_column=some_value;
DELETE some_column=some_value FROM table_name;
DELETE FROM table_name WHERE column_name = value;
DELETE table_name WHERE some_column=some_value;
