The precautions that should be taken to avoid the overloading of domestic electric circuits are:
- Do not put high voltage wires in one socket.
- Do not use many electric appliances of high power at the same time.
<h3>What are electric circuits?</h3>
Electric circuits are wires or devices that give electricity to devices that run on electricity. Running of electric devices should be done carefully because our body can come in contact with the current.
Thus, the precautions are to keep high voltage lines away from one socket. Use only a few high-power electric appliances at once.
To learn more about electric circuits, refer to the below link:
brainly.com/question/28221759
#SPJ4
Answer: Last week, Nate and I counted all the inventory.
Explanation: all other choices are passive voices
this sentence follows a clear subject + verb + object construct that's why it is an active voice. In fact, sentences constructed in the active voice add impact to your writing. but on the other hand With passive voice, the subject is acted upon by the verb.
Ape x
Below is the program to separate odd and even numbers
<u>Explanation</u>:
<u>L1:</u>
mov ah,00
mov al,[BX]
mov dl,al
div dh
cmp ah,00
je EVEN1
mov [DI],dl
add OddAdd,dl
INC DI
INC BX
Loop L1
jmp CAL
<u>EVEN1:</u>
mov [SI],dl
add Even Add,dl
INC SI
INC BX
Loop L1
<u>CAL: </u>
mov ax,0000
mov bx,0000
mov al,OddAdd
mov bl,EvenAdd
MOV ax,4C00h
int 21h
end
The above program separates odd and even numbers from the array using 8086 microprocessor. It has odd numbers in 2000h and even numbers in 3000h.