answersLogoWhite

0

What does bx stand for in bx cable?

Updated: 4/28/2022
User Avatar

Wiki User

11y ago

Best Answer

Bronx

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does bx stand for in bx cable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a BX connector?

A BX connector is a special type of box connector used for securing a BX cable to a junction box. BX is a type of armoured cable that is used for specific locations where ordinary Romex cable could become damaged. Before the connector is installed onto the BX cable there is a small PVC collar to be installed. In the trade it is called an anti short. It slides between the outer sheath of the BX and the conductors inside the sheath. It adds protection for the inner conductors from rubbing against the outer sheath if any vibration is involved in the installation. There is usually a small hole in the BX connector and the red anti short can be seen through this hole. This makes it easy for the electrical inspector to see if the anti short bushing has been installed during an inspection, and they do check.


Who is bx cable name after?

BRONX


Was silver ever used in bx wire?

No, silver was never used in BX cable.


Where did BX get its name?

The term BX is a trademark owned by GE. The term "BX" is a short form for Bronx because GE had a facility to make the cable.


Is the outer sheath on BX cable an adequate ground path?

It used to be, but now the ground wire (which replaced the aluminum strip) in the BX cable is used. The ground wire is now used to complete the grounding of connected devices rather that the sheath of the BX.


What kind of products does the company BX Cable offer?

BX Cable Company produces a variety of cables made from many different materials and in differing lengths for both the personal and commercial markets.


What is the difference between MC and AC or BX cable?

It is blue and yellow if that is ok.


Where is bx cable used?

Burger king (bk) used in cctv, lcd,plasma, networking,in digi-key,etc..


When armored cable is used what protection is provided at the cable end?

these little devices are generally called connectors when you cut the armor it leaves some burs so there a little fiber bushing you slip under the armor and over the wire before putting in into the connector and into the box rome cable company had a armored cable they called BX which kinda stuck the generic term is MC for metal clad MC Cable Connectors <<>> These little red bushings that come with rolls of BX cable are called anti-shorts. <<>> the little bushings are also called redheads


What does c stand for in the quadratic equation?

ax^2+bx+c, so it's the coefficient in front of your x^0 term


What does the black jumper cable stand for?

negative


Write a program to subtract two 16 bit numbers in microprocessor 8086?

.code main proc mov ax,@data mov ds,ax lea dx,msg ;printing msg mov ah,09h int 21h mov ax,x ;ax=x mov bx,y ;bx=y cmp ax,0 ;jump to l3 if ax is negtive jb l3 cmp bx,0 ;jump to l6 if bx is negative jb l6 cmp ax,bx ;if ax<bx,then jump to l1 jl l1 sub ax,bx ;else normal sub mov diff,ax ;diff=result is stored jmp l2 l1: ;iff (+)ax<(+)bx neg bx ;bx=-bx clc add ax,bx neg ax ;-ans=ans mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l3: ;iff (-)ax neg ax ;-ax=ax cmp bx,0 ;jump to l4 if bx is negative jb l4 clc add ax,bx ;ax=(+)ax+(+)bx mov ax,diff mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l4: ;if (-)ax & (-)bx neg bx ;-bx=bx cmp ax,bx ;if ax>bx then jump to l5 jg l5 sub ax,bx ;else ax-bx mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l3 l5: ;if(-)ax>(-)bx xchg ax,bx ;exchange ax and bx sub ax,bx ;ax-bx mov diff,ax ;ans is positive jmp l2 l6: ;iff (-)bx neg bx ;-bx=bx add ax,bx ;ax-(-)bx mov diff,ax ;ans will be positive mov ah,4ch int 21h main endp