Answer:
C. Confidentiality
Explanation:
With confidentiality, a person who intercepts messages you intend to remain private cannot read them and thus increases your document protection
Answer:
because it provides you a lot of storage and the post production equipment to handle it and it is used to do big projects
Explanation:
so l know this much it is correct please mark me brainllest
An ether channel can give you high speed interface if it is successfully engineered. Combining 2 or more ethernet lets you create a logical ethernet link providing high speed links between switches. Also having etherchannel gives you a higher band width than what you costumed for.
Answer:
<h2>A negative impact.</h2>
Explanation:
The unemployed are also unable to purchase as many goods, so will contribute to lower spending and lower output. A rise in unemployment can cause a negative multiplier effect.
Answer:
a variable of type "double" is more suitable for finding average because average could be any number with decimal places. we can't use a variable of type "integer" because it will omit the value after the decimal and will not produce satisfactory results.
Explanation:
an example of C++ code is given to find the average of two numbers a and b
#include <iostream>;
using namespace std;
int main() {
double a = 2.334;
double b = 34;
double average = (a + b) / 2;
cout << average;
return 0;
}