Solved

Match Each Statement Below with Correct Item

Question 15

Matching

Match each statement below with correct item:

Premises:
Allows cookies to be shared across a server
The only required parameter of the cookie property
Converts special characters in the individual parts of a URI to their corresponding hexadecimal ASCII value, preceded by a percent sign
Restricts how JavaScript code in one window or frame accesses a web page in another window or frame on a client computer
Encrypts data and transfers it across a secure connection
Converts the Date object to a string, formatting it in Coordinated Universal Time
Temporarily stores data that needs to be sent to a server along with the rest of a form, but that a user does not need to see
Also known as defensive coding
Consists of a single text string containing one or more pieces of information
Storage that remains until you run code to delete it
Responses:
encodeURIComponent()
secure coding
query string
same origin policy
toUTCString()
hidden form field
localStorage
name attribute
path attribute
SSL

Correct Answer:

Allows cookies to be shared across a server
The only required parameter of the cookie property
Converts special characters in the individual parts of a URI to their corresponding hexadecimal ASCII value, preceded by a percent sign
Restricts how JavaScript code in one window or frame accesses a web page in another window or frame on a client computer
Encrypts data and transfers it across a secure connection
Converts the Date object to a string, formatting it in Coordinated Universal Time
Temporarily stores data that needs to be sent to a server along with the rest of a form, but that a user does not need to see
Also known as defensive coding
Consists of a single text string containing one or more pieces of information
Storage that remains until you run code to delete it
Related Questions