Cite a situation in which the sensitivity of an aggregate is greater than that of its constituent values. Cite a situation in which the sensitivity of an aggregate is less than that of its constituent values.

What will be an ideal response?


The sensitivity of the total amount of food carried by a warship at sea is sensitive because it can give the enemy an indication of how long the shipcan remain at sea without returning to port to restock.However, little would be revealed if an enemy saw that 200 cans of baked beans were being loaded on that ship, because the enemy would not know what other food was on board. Many people consider personal financial information sensitive, such as their income or the value of their home. However, the total income of a population or the valuation of all homes in a city is not as private.

Computer Science & Information Technology

You might also like to view...

In C++, a variable that has been defined but not initialized may

a) be used in any way any identifier can be used. b) not be used at all c) not be used as an l-value d) not be used as an r-value e) have its value fetched prior to assignment.

Computer Science & Information Technology

Match the following file types with their description:

I. HTML file type II. PDF file type III. TXT file type IV. MHTML file type V. RTF file type A. Used to distribute content as a Web page B. Saves most of the Word formatting C. Used when formatting does not matter D. A format that binds the components of a file together in one file E. Needs to be read, but not edited

Computer Science & Information Technology

Messages that share the same subject line, and can be collapsed or expanded as needed are called ________

A) topics B) conversations C) threads D) themes

Computer Science & Information Technology

public static int func2(int m, int n){    if (n == 0)        return 0;    else        return m + func2(m, n - 1);}What is the output of func2(2, 3)?

A. 2 B. 3 C. 5 D. 6

Computer Science & Information Technology