1: | What pair of items is sent when a user submits a form? |
2: | What is a hidden text field? |
3: | What does it mean when a URL begins with https? |
A1: | The name-value pair is sent when a user submits a form. This is the name of the form object and the value the user either entered or selected. |
A2: | A hidden text field contains a name-value pair that the user cannot change. Generally, this data is required by the script to properly process the form. |
A3: | A URL beginning with https signals that the URL is secure using the Secure HTTP protocol. |