answersLogoWhite

0

100BaseT - Is a standard for UTP- unshield Twisted Pair

it means 100mbps connectivity / maximum distance of cable u can use is 100m

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is 100 Base T?

100mps


What is the t in 100 base t?

maa chudao madarchodo


What does the 100 when referring the 100 BASE-T Ethernet Standard?

100 is the speed. 100Mbps


What does T in 10 base-t and 100 base-t stand for?

The T stands for "twisted pair" which means that the wires are twisted. This technique reduces interference in the signals.


Which cable is necessary to support 100 meter for 10G Base-t?

CAT6a


What utp cable category is recommended as 100 base T media?

Cat 5


Do Cisco 2690 Catalyst Switches support 100-Base-T Speeds?

Yes, they do.


What ethernet operates at 100 mbps and uses stp or utp cabling rated cat-5 or higher?

100 Base T


What would indicate a base paring an A paired with a T or a C paired with a G?

Which of the following would indicate a base pairing mutation in DNA?1) an A paired with a T2) a C paired with a G3) a G paired with a T4) all the above are improrer base pairsThe correct answer is #3A should pair with T and G should pair with CIf A paired with C or G paired with T it would be a base pairing mutation.


Solve for t 66000 times 1.01125 raised to 4t equals 200000?

Assuming I read this right: 66000 x 1.011254t = 200000 1.011254t = 200000 / 66000 = 100/33 taking logs of both sides 4t log 1.01125 = log(100/33) t = log(100/33) / (4 x log 1.01125) Logs used can be any base, but must be the same base: t ~= 24.77527


What does T Protein indicate on a blood test?

T protein = Total protein


Electricity bill preparation source codes in java?

import java.io.*; import java.lang.*; class electricity extends Exception { int b1; electricity(int b) { b1=b; System.out.println("\n\t\t Exception will caught below "); } } class electric { static void compute(int a,int b,String name,String bno)throws IOException,electricity { name=name; bno=bno; if(b<a) throw new electricity(b); else { int tmr,amt=0,z=0; tmr=b-a; do { DataInputStream in=new DataInputStream(System.in); System.out.println("\n\t Click any purpose "); System.out.println("\n\t\t 1-Domestic "); System.out.println("\n\t\t 2-Agriculture "); System.out.println("\n\t\t 3-Industry "); System.out.println("\n\t\t 4.Exit"); System.out.println("\n\n\t\t Enter ur Choice :"); int ch=Integer.parseInt(in.readLine()); switch(ch) { case 1: if(tmr<=100) amt =tmr *2; else if(tmr >100 && tmr <=200) amt=(tmr-100) *4 +100*2; System.out.println("\n\n\t\t **********************************************"); System.out.println("\t\t\t Electricity Bill Preparation "); System.out.println("\t\t **********************************************\n\n"); System.out.println("\n\t\t Name : " +name + " Bill no : " + bno ); System.out.println("\n\t\t Previous Meter Reading : " +a ); System.out.println("\n\t\t Closed Meter Reading :" +b ); System.out.println("\n\t\t Current Meter Reading :" +tmr ); System.out.println("\n\t\t Purpose : Domestic " ); System.out.println("\n\t\t Total Amount Rs. :" +amt ); break; case 2: if(tmr<=100) amt =tmr *0; else if(tmr >100 && tmr<=200) amt=(tmr-100) *1 +100*0; System.out.println("\n\n\t\t **********************************************"); System.out.println("\t\t\t Electricity Bill Preparation "); System.out.println("\t\t **********************************************\n\n"); System.out.println("\n\t\t Name : " +name + " Bill no : " + bno ); System.out.println("\n\t\t Previous Meter Reading : " +a ); System.out.println("\n\t\t Closed Meter Reading :" +b ); System.out.println("\n\t\t Current Meter Reading :" +tmr ); System.out.println("\n\t\t Purpose : Agriculture " ); System.out.println("\n\t\t Total Amount Rs. :" +amt ); break; case 3: if(tmr<=100) amt =tmr *4; else if(tmr >100 && tmr<=200) amt=(tmr-100) *8 +100*4; System.out.println("\n\n\t\t **********************************************"); System.out.println("\t\t\t Electricity Bill Preparation "); System.out.println("\t\t **********************************************\n\n"); System.out.println("\n\t\t Name : " +name + " Bill no : " + bno ); System.out.println("\n\t\t Previous Meter Reading : " +a ); System.out.println("\n\t\t Closed Meter Reading :" +b ); System.out.println("\n\t\t Current Meter Reading :" +tmr ); System.out.println("\n\t\t Purpose : Industry " ); System.out.println("\n\t\t Total Amount Rs. :" +amt ); break; case 4: System.exit(0); } System.out.println("\n\t Continue :"); z=Integer.parseInt(in.readLine()); } while(z==1); } } public static void main(String ar[])throws IOException { electric ee=new electric(); String name,bno; int pmr,cmr; DataInputStream in=new DataInputStream(System.in); System.out.println("\n\t ELECTRICITY BILL USING USERDEFINED EXCEPTION "); System.out.print("\n\t\t Enter the name : "); name=in.readLine(); System.out.print("\n\t\t Enter the Bill Number :"); bno=in.readLine(); System.out.print("\n\t\t Previous Meter Reading : "); pmr=Integer.parseInt(in.readLine()); System.out.print("\n\t\t Current Meter Reading : "); cmr=Integer.parseInt(in.readLine()); try { compute(pmr,cmr,name,bno); } catch(Exception e) { System.out.println("\n\t\tUserDefined Exception is found"); } } }