____________________ is a data management feature that allows you to focus on a subset of the data in a worksheet.

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


Filtering

Computer Science & Information Technology

You might also like to view...

What is displayed by this program?

``` #include void seven(int *xp); int main(void) { int x, y; x = 5; y = 6; seven(&x); seven(&y); printf("%4d%4d\n", x, y); return(0); } void seven(int *xp) { int y; y = *xp + 2; *xp = y * 3; } ``` a. 21 24 b. 21 8 c. 5 6 d. 5 8 e. none of the above

Computer Science & Information Technology

If userA wants to send a secure message to userB using an asymmetric cryptographic algorithm, which key does userB use to decrypt the message?

A. userB's private key B. userB's public key C. userA's public key D. userA's private key

Computer Science & Information Technology

Schemas are required in XML files

Indicate whether the statement is true or false

Computer Science & Information Technology

Identify the four basic categories of hardware in a personal computer system.

A. hard disk, modem, RAM, and microprocessor B. system unit, input/output, secondary storage, and communication C. system unit, input/output, secondary storage, and primary storage D. hard disk, input/output, secondary storage, and display devices

Computer Science & Information Technology