answersLogoWhite

0

"D-sub" in an appriviation of D-subminiature which is a class of connector used in computers. The most common types are serial (DE-9) parallel (used for printers) and VGA (for computer monitors).

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

Your new graphics card doesn't fit your monitor plug?

You can purchase adapters that will change the plugs, ie DVI - Dsub. Simply insert the adapter onto your graphics card, and then plug the monitor lead into it. Hope this helps be safe Cadishead Computers


Why d block element are called transition element?

d block elements, transition metals, transition elements are synonyms.The definition of d block after the IUPAC recommendation is "an element whose atom has a partially filled d sub-shell, or which can give rise to cations with an incomplete dsub-shell".


Is there a switch box that can connect a laptop and a PC to one monitor and one screen and one keyboard all belonging to the PC?

hi there.. yes you can purchase whats called a KVM Switch. These are usually either 2 ports, 4 ports or 8 ports. Basically, its a little box, with a keyboard / mouse input, monitor input together with outputs for 2, 4, or 8 PC's or other devices. The keyboard / mouse input is from your usual keyboard and mouse to the switch. You also add the dsub (monitor lead) into the kvm. The kvm will have separate leads, in which to return the monitor, kb, and mouse back to your desktop, laptop. Usually you can switch from PC to PC, by pressing the scroll lock key twice, followed by the other device number. EG if you have a 4 port kvm, its scroll lock x2, then no 3, to access the 3rd PC. Together with the KVM switch, you will also have to buy the leads. (Some kvm's come with them included, but many don't). Hope this helps Be safe Nige Cadishead Computers


What kinds of cables are used to connect most peripheral devices to computer?

There are many, many different kinds. Just to name a few... USB, USB2.0, USB3.0, Firewire400, Firewire800, eSATA, Serial, Parralel, DSUB, DVI, HDMI, S-Video, 2.5mm audio, 3.5mm audio, PS/1, PS/2, Fibrechannel, X11, RJ45, and more.


Db9 pinout with color code?

Pin 1 - Black Pin 2 - Brown Pin 3 - Red Pin 4 - Orange Pin 5 - Yellow Pin 6 - Green Pin 7 - Blue Pin 8 - Violet Pin 9 - Gray The function of each pin will depend on what signaling standard you are using. I am also unsure if these colors are ubiquitous, or if it just a standard that is typically followed. Keep in mind this follow a very similar color-numbering system to resistors. Just remember that resistor color-numbering starts at 0, while pinouts start with 1. You will need to memorize that black and brown come first and gray comes last, the others follow the old ROYGBV of colors. Red, Orange, Yellow, Green, Blue, Violet. Indigo is usually skipped because it is too hard to make an indigo that won't be confused as either blue or purple. It's kinda like removing the letter "I" from alphanumeric tagging systems so as to not confuse it with the numeral "1." I used this to remember how to "count" with colors in college, and I use it regularly as an EE. To find information on various pinout standards that use the DB-9 or DSUB-9 connectors you are left to your own searching via google or wikipedia for best results. Good luck!


How are transition elements different from other elements in s and p blocks on periodic table?

It's a transition where an electron jumps from one d orbital to another. Normally these are degenerate (the d orbitals have the same energy), but under some conditions, such as the presense of ligands, the degeneracy can be removed so that there is a specific energy (and therefore wavelength) associated with these transitions. These sorts of transitions sometimes have energies located in the visible band, and it's one reason transition metal ions (and complex ions in particular) tend to be highly colored.


Write program to add two 16 bit number using assembly language of Intel 8085?

Data segment n1 db 20 n2 db 10 sum db ? Data ends code segment assume cs:code,ds:data start:mov ax,data mov ds,ax mov al,n1 mov bl,n2 add al,bl mov sum,al mov ah,4ch int 21h code ends end start