int decimalValue = Integer.parseInt(strNum, 2); // Binary to Decimal
int decimalValue = Integer.parseInt(strNum, 2);
// Binary to Decimal
String binaryValue = Integer.toString(num, 2) // Decimal to Binary
String binaryValue =