wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

AWD Quiz #3

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Data passed using the _____ method will not be visible in query parameters in browser URL.

a)

PARSE

b)

POST

c)

GET

d)

INTERPRETER

2.

This type of input allows you to pass along information to the form without showing the value to the user.

a)

Close

b)

Hidden

c)

Invisible

d)

Micro

3.

This element allows you to check a box to make a selection.

a)

Radio

b)

Textbox

c)

Select

d)

Checkbox

4.

An element that allows you to enter a variety of options that will drop down for selection.

a)

Checkbox

b)

Select

c)

Radio

d)

Textbox

5.

The mysqli_open() opens a connection to the database.

a)

TRUE

b)

FALSE

6.

This function is used to send a query or command to a MySQL connection.

a)

mysqli_query()

b)

mysqli_connect()

c)

msqli_command()

d)

mysqli_send()

7.

In database management, it is a question or a request.

a)

Inquiry

b)

Command

c)

Function

d)

Query

8.

Which of the following is not an SQL command?

a)

UPDATE

b)

VIEW

c)

SELECT

d)

DELETE

9.

What is the syntax of adding data to database?

a)

INSERT INTO table_name VALUES (value1, value2, value3, ...);

b)

INSERT INTO table_name VALUES "value1", "value2", "value3", ...)

c)

INSERT VALUES (value1, value2, value3, ...) in table_name

10.

What is the syntax of deleting data in databse?

a)

DELETE FROM table_name VALUE some_column=some_value;

b)

DELETE some_column=some_value FROM table_name;

c)

DELETE FROM table_name WHERE column_name = value;

d)

DELETE table_name WHERE some_column=some_value;