Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem 4 Write a static java method binaryToDecimal that accepts a long representing a binary number as input parameter (should be s sequence of a
Problem 4 Write a static java method binaryToDecimal that accepts a long representing a binary number as input parameter (should be s sequence of a max 10 binary digits) and converts it decimal and return the result. Note: the binary number should always start with a '1'. For example: binaryToDecimal(1001011101); should return 605 binaryToDecimal(1111111111); should return 1023 your tester (BinaryToDecimal.java) main method should output : (1001011101) in binary = (605) in decimal. (1111111111) in binary = (1023) in decimal. Hint. The decimal value of a number with a binary representation of the form dydn-1 ...di ...d do may be computed as ?-od; x 2'. 11011011 Binary to Decimal 1x 21 x 1 = 1 1x2= 1 x 2 = 2 0 x 20 x 4 = 0 1 x 21 x 8=8 1x 21 x 16 = 16 0x20 x 32 = 0 1 x 21 x 64 = 64 1 x 21 x 128 - 128 1 +2+8+16+64 + 128 = 219 ( 11011011 )=(219) 10
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started