Pull him away from the fridge with a non-conducting material and begin cardiopulmonary resuscitation .
<h3>What is meant by electric shock?</h3>
When a human comes into contact with an electrical energy source, they experience an electric shock. A shock is produced when electrical energy passes through a section of the body. Exposure to electrical energy has the potential to cause fatalities or absolutely no injuries.
The tangible and tangible result of an electrical current entering the body is electrical shock. The shock could be anything from a dangerous discharge from a power line to an uncomfortable but safe jolt of static electricity after walking over a thick carpet on a dry day. trauma; related topics.
The complete question is : Michael is stuck due to an electric shock generated at the fridge. What should you do to save Michael?
A. push the fridge away with a non-conducting material and begin cardiopulmonary resuscitation
B. push the fridge away from him and begin cardiopulmonary resuscitation
C. pull him away from the fridge with a non-conducting material and begin cardiopulmonary resuscitation
D .pull him away from the fridge with your hands and begin cardiopulmonary resuscitation
To learn more about electric shock refer to:
brainly.com/question/28361869
#SPJ1
<span>1. Deleting files accidentally
</span>
2. Viruses and damaging malware
3. Mechanical damages of hard drive
4. Power failures
5. Theft of computer
6. Spilling coffee, and other water damages
7. Fire accidents and explosions
<span>Hope this helps.</span>
Answer: A
Explain:
you can use memory on a computer to retrieve passed data if your referring to brains memory that is memory of passed events
memory:1 the faculity by which the mind stores and members information
2 something remembered from the past a recollection
You can construct it with a protractor.
import java.util.Scanner;
public class JavaApplication77 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter a sentence:");
String sentence = scan.nextLine();
String [] arr = new String[sentence.length()];
arr = sentence.split(" ");
System.out.println("There are "+arr.length+" words in the sentence.");
int count = 0;
for(int i = 0; i < arr.length; i++){
count += arr[i].length();
}
System.out.println("The average length of a word in your sentence is "+(count/arr.length)+" characters");
count = 0;
System.out.println("Your sentence is "+sentence.length()+" characters long.");
}
}
For the length of a sentence, I included spaces as characters but I did not do this for the length of a word. I hope this helps!