You use the Modify Hyperlink dialog box to change the value of a Hyperlink.? _____________________

Answer the following statement true (T) or false (F)

False

Computer Science & Information Technology

You might also like to view...

In a data table, the ________ number format is used to disguise the formula references in the first row as labels

A) Special B) Custom C) Text D) Scientific

Computer Science & Information Technology

Which of the following should be entered on line 5 to set a cookie that will expire in a week and contains the user's name, assuming the name is stored in $myName?

``` 1. 7. 8. Cookies 9. 10.

Your name:

11.

Your age:

12. ``` a. ``` setcookie($myName, time() + NEW_TIME); ``` b. ``` setcookie("name", $myName, time() + NEW_TIME + 7); ``` c. ``` setcookie("name", time() + 7); ``` d. ``` setcookie($myName, name, time() + NEW_TIME + 7); ```

Computer Science & Information Technology