Answer:
Clipboard, Slides, Font, Paragraph, Drawing, and Editing
Researches at symantec have uncovered a version of the stuxnet computer virus that was used to attack irans nuclear program in November.
*Metatarsal foot protection
*Rubber boots with steel toes
*Non-prescription eye protection
*Prescription eyewear inserts/lenses for
full face respirators
*Goggles and face shields
*Fire fighting PPE (helmet, gloves, boots,
proximity suits, full gear)
*Hard hats
*Hearing protection
*Welding PPE
// writing c++ function
int maximum ( int a , int b){
if(a>b)
return a;
else
return b;
}
//when this function will be called it will return the max of the integers sent.
//for example
int max = maximum ( 3,4)
//max variable will have 4 returned by the function