If you want to insert a check box or a drop-down list, you will need to go to the ________ tab

Fill in the blank(s) with correct word

Developer

Computer Science & Information Technology

You might also like to view...

Consider the following code fragment.

``` char str[10]; scanf("%s", str); ``` What will happen if scanf encounters the string "vivaciously" when scanning a value for str? a. Since there is not enough room in str for the whole string, only "vivacious" will be stored in str. b. Function scanf will store the entire string "vivaciously", even though there is insufficient space in str. The string will overflow str. c. The program will abort with an error message. d. Only "vivacious" will be scanned and stored, leaving "ly" on the input line. e. None of the above.

Computer Science & Information Technology

____________________ files are files that are not linked to any pages in the website.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology