parseShort() Method, parse Short Binary to short Decimal in java

Java Programming Language / Number Class in java

931

Program:

 public class ParseBinaryToDecimal {

   public static void main(String args[]) {

     short b = Short.parseShort("1110",2);

      System.out.println(b);
   }
}

Output:

14
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.