Objectification means:

A. Ranking people according to objective social categories
B. Treating people as if they were objects
C. Objecting to people wo are the “other”
D. Evaluating people’s abilities objectively


B. Treating people as if they were objects

Computer Science & Information Technology

You might also like to view...

A(n) ____________________ is an additional copy of a file or message that you store for safekeeping.

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

Computer Science & Information Technology

Which of the following will sum up all the integers between 1 and 10, inclusive?

a. ``` var sum = 0; for (var i = 1; i < 11; i ++) sum = sum + i; ``` b. ``` var sum = 1; var i = 1; while(i < 11) sum = sum + i; ``` c. ``` var sum = 1; var i = 1; while(i != 10) { i++; sum = sum + i; } ``` d. ``` var sum = 0; for (var i = 1; i < 10; i++) sum = sum + i; ```

Computer Science & Information Technology

What is a value that can be used to ensure that plaintext, when hashed, will not consistently result in the same digest?

A. salt B. initialization vector C. counter D. nonce

Computer Science & Information Technology

____________________ determines the overall lightness or darkness of an entire image.

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

Computer Science & Information Technology