To ____________________ a document means to make changes to its existing content.

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


edit

Computer Science & Information Technology

You might also like to view...

If you can make more than one choice from a group of radio buttons, what is wrong with your code?

A. The id attributes are not identical. B. The name attributes are not identical. C. The name attributes are identical. D. none of the above

Computer Science & Information Technology

Write a separate expression that accesses the structure members in each of the following parts:

Consider the following structure definitions and variable declarations:

struct Customer {
char lastName[ 15 ];
char firstName[ 15 ];
int customerNumber;
struct {
char phoneNumber[ 11 ];
char address[ 50 ];
char city[ 15 ];
char state[ 3 ];
char zipCode[ 6 ];
} personal; // end struct
} customerRecord, *customerPtr; // end struct Customer
customerPtr = &customerRecord;
a) Member lastName of structure customerRecord. b) Member lastName of the structure pointed to by customerPtr. c) Member firstName of structure customerRecord. d) Member firstName of the structure pointed to by customerPtr. e) Member customerNumber of structure customerRecord. f) Member customerNumber of the structure pointed to by customerPtr. g) Member phoneNumber of member personal of structure customerRecord. h) Member phoneNumber of member personal of the structure pointed to by customerPtr. i) Member address of member personal of structure customerRecord. j) Member address of member personal of the structure pointed to by customerPtr. k) Member city of member personal of structure customerRecord. l) Member city of member personal of the structure pointed to by customerPtr. m) Member state of member personal of structure customerRecord. n) Member state of member personal of the structure pointed to by customerPtr. o) Member zipCode of member personal of structure customerRecord. p) Member zipCode of member personal of the structure pointed to by customerPtr.

Computer Science & Information Technology

If you find yourself frequently working directly with the code, you may also find it useful to explore the options on the Code Formatting and ____ tabs.

A. CodeSense B. IntelliSense C. FormatSense D. ExploreSense

Computer Science & Information Technology

A system used to interconnect a set of basic service sets and LANs to create an extended service set is a _________.

A. distribution system B. coordination function C. MAC data unit D. wireless access system

Computer Science & Information Technology