Dir, attrib, cd, and rem are all examples of DOS Commands. dir command is used to display a list of files and folders contained inside your current folder. Attrib changes or views the attributes of one or more files. CD id for changing directory. rem<span> command is used to record comments in a script file.</span>
Is this a question or answer? Either re-post correctly or ignore this.
No it is not. it's quite simple when you get the hang of it
Answer: Companies and organization are taking several steps to secure their user from internet abuse .The methods are mentioned as follows:-
- Offering security technologies in the form of package along with the service so that the protection resource is not required to be installed or bought from elsewhere such as antivirus technologies.
- Using the web servers that are available with high security features
- Using the websites that persist the built-in feature of giving virus or malicious interruption warnings so that user can become alert
- Making users aware about internet abuse and provide information so that they can identify such happening in the service.
Answer:
Replace
/* Your solution goes here */
with
sumExtra = 0;
for (i =0; i<NUM_VALS;i++){
if(testGrades[i]>100){
sumExtra = sumExtra - testGrades[i] + 100;
}
}
Explanation:
This line initializes sumExtra to 0
sumExtra = 0;
The following is a loop from 0 to 3
for (i =0; i<NUM_VALS;i++){
The following if condition checks if current array element is greater than 100
if(testGrades[i]>100)
{
This line calculates the extra credit
sumExtra = sumExtra - testGrades[i] + 100;
}
}
<em>See attachment for complete question</em>