InterviewSolution
Saved Bookmarks
| 1. |
Write the steps for binary to decimal conversion? |
|
Answer» To convert Binary to Decimal we can use positional notation method. 1. Step 1: Write down the Binary digits and list the powers of 2 from right to left (Positional Notation) 2. Step 2: For each positional notation written for the digit, now write the equivalent weight. 3. Step 3: Multiply each digit with its corresponding weight. 4. Step 4: Add all the values. |
|