answersLogoWhite

0


Best Answer

No. Unplug anything that is in use that is next to you.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is it safe to sleep with your head directly next to a plug socket in use?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you extract seed from a cabbage plant for next season?

Cabbage plants seeds their seed stalk directly out the cabbage core. You have to pull the head, roots and all and store over winter and then replant them the next spring. The seed stalk will come directly through the head.


Name a next ball and socket joint?

Ball and socket joints are hips, shoulder. Hope this helps


Where is the diagnostics socket on your Toyota Corolla?

The diagnostics socket on a Toyota Corolla can be found inside the car. It is next to the hood release.


Does it help to learn lyrics by playing music while you sleep?

i would say yes because usually when i sleep with a song on it gets stuck in my head the whole next day then i cant stop singing it so in my opinion YES! =)


Where is the AUX socket for a 2007 Ford Fiesta?

next to cigar lighter


What can you do to get waves in your head besides using a do-rag?

Sleep with nothing on ur hair.The next morning jus start brushing again only if u put on wave grease.


Plymouth Voyager 3.0 cant get plug socket on?

There is probably some debris laying next to the plug that is keeping the socket form going on.


How do you reverse a single linked list in recursive method?

Reversing a singly-linked list is (surprisingly) simple and can be done non-recursively. The following function accepts a reference to the current head of the list and returns the new head after reversing the list. node* reverse (node* head) { if (!head) return head; node *lead, *temp; lead = head; while (lead->next) { temp = lead->next; lead->next = temp->next; temp->next = head; head = temp; } return head; } Doing the same thing recursively is a bit more tricky but it can be done as follows. node* reverse (node* head, node* prev=NULL) { node* temp; if (!head) { return head; } else if (!head->next) { head->next = prev; return head; } else { temp = head->next; head->next = prev; return reverse (temp, head); } }


How do you sleep with big curly hair where it will still look nice the next day and not get in your boyfriend's face when you sleep?

Flip your head upside down and grab all your hair to get it into a pony tail on top of your head. If you do this right, your curls will look good the next day you get up. You should use a scrunchie, or some type of hairtie that is not quick so tight. I do this everynight I go to bed and my curls come out looking as if I just blow-dryed my hair.


When does a millipedes sleep?

Next to the cherioes


Why do you have sleep?

Sleep is a big factor on your life, Both Health and Condition of yourself the next day


Recursively reversingsingly linkedlist in c plus plus?

Don't know how you'd do it recursively, but an iterative version might look something like:struct Node {int data;Node* next;};struct List {Node* head;};void reverse(List& list) {Node* head = list.head;Node* next;if (head == 0) return;while (next = head->next) {head->next = next->next;next->next = list.head;list.head = next;}}This is untested, but the gist is simple: for each element in the list, move it to the front of the list.