Answer:
The following are the order of the routine maintenance tasks that is C, A, B, D
Explanation:
For securing the computer system the user has to follow some steps related to the routine maintenance tasks.
- Firstly, the user has to validate the settings on the Windows Update.
- Then, they have to validate the settings on the anti-malware software.
- Then, the user has to validate the setting related to the file-sharing system.
- Finally, they have to validate the frequent optimization of hard drives or hard disks.
Answer:
do what the directions say and you should be able to figure out the answer if not contact me through brainly
Explanation:
Put a code or security system on or a very secure password
Hope this helps...
Answer:
The correct answer is:
C. ndx = 0;
while (ndx < 3) {
ar[ndx] = 0;
ndx++;
}
Explanation:
The declaration given is:
int ar[3];
This means the array consists of three locations and is named as ar.
We know that the indexes are used to address the locations of an array and the index starts from 0 and goes upto to 1 less than the size of the array which means the indexes of array of 3 elements will start from 0 and end at 2.
Now in the given options we are using ndx variable to run the while loop.
So the code to assign zero to all elements of array will be
ndx = 0;
while(ndx<3)
{
ar[ndx] = 0;
ndx++;
}
Hence, the correct answer is:
C. ndx = 0;
while (ndx < 3) {
ar[ndx] = 0;
ndx++;
}