Answer:
DOS, Denail of Service Attacks
Explanation:
Answer:
The correct answer to the following question is "Typewriters".
Explanation:
CADCFA seems to be the very first provision of federal laws to specifically concentrate on computer assault. These clauses continued to allow corporations to prosecute unjust workers for compensation for the misuse of confidential or sensitive information.
- Even though we all agree that sometimes a federal worker uses the typewriters in the abundance of power, that's why it's not protected by that same act.
- The other options are incorrect because they are all known and are covered for that given CADCFA act.
<u>Answer:</u>
<em>void main ( ) </em>
<em> { </em>
<em> int counter; </em>
<em> cout<<""Even numbers between 1 to 20 are:""<<endl ; </em>
<em> //Method 1
</em>
<em> for (counter = 1; counter <= 20; counter++) </em>
<em> { </em>
<em> if ( counter%2 == 0) </em>
<em> {
</em>
<em> cout<<counter<<""\t""<<endl ; </em>
<em> } </em>
<em> } </em>
<em>//Method 2 – simplest one
</em>
<em>for (counter = 2; counter <= 20;) </em>
<em> { </em>
<em> cout<<counter<<""\t""<<endl ; </em>
<em>counter = counter + 2;
</em>
<em> </em>
<em> }
</em>
<em>
</em>
<em> return 0; </em>
<em>}
</em>
<u>Explanation:</u>
In this, Method 1 runs a for loop and check whether each number is divided by 2. If yes, then printed otherwise it is skipped.
In the second method, it runs for loop only for even numbers. <em>This is obtained by incrementing the counter by 2.
</em>
Yes it is in fact it is usful