answersLogoWhite

0


Best Answer

Both base 16 and base 2 number systems use binary numbers (1 and 0) to write out and define decimal numbers.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How are the base 16 and base 2 numbers related?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

The number of 1's present in the number 65 is?

That depends on what base you're talking about. Base 10 = 65, 0 Base 2 = 1000001, 2 Base 8 = 101, 2 Base 16 = 41, 1


What does the binary number 1011 translates to what decimal number?

The Binary number 1011 = 11 See the related link, Binary Numbers, below this answer.


Decimal numbers into their equivalent binary numbers?

#include #includevoid main(){int a[20],b,c,d,i=0;printf("Enter a decimal no. to convert it into binary no.");scanf("%d",&b);c=b;while(b>0){d[i]=b%2;i++;b=b/2;}i--;printf("\nBinary equivalent of decimal no. %d is ",c);while(i>=0){printf("%d",d[i]);i--;}getch();}


Can 2 binary numbers have the same decimal value?

Two numbers that have the same decimal value will have the same binary value. Binary is simply a representation of a number in base 2, while decimal is base 10. For example, consider the number 104 in base 10. In this system, we can break down each digit due to the distributive law. 104 = 1 * (10^2) + 0 * (10^1) + 4 * (10^0) = 100 + 0 + 4 = 104 To convert to base 2, we can find the largest power of two that is less than our base 10 number and work backwards from there, in this case we start at 2^6 or 64 2^6 = 64 104 - 64 = 40 2^5 = 32 40 - 32 = 8 2^3 = 8 8 - 8 = 0 so therefore: 104 = 1 * (2^6) + 1 * (2^5) + 0 * (2^4) + 1 * (2^3) + 0 * (2^2) + 0 * (2^1) + 0 * (2^0) meaning that 104 base 10 is equal to 1101000 base 2.


What are the first 16 numbers in base 12 use the letters A and B to represent the last two digits?

Duodecimal system (also known as base-12 or dozenal) is a positional notation numeral system using twelve as its base. The duodecimal requires twelve symbols such as: 0, 1, 2, 3 , 4, 5, 6, 7, 8, 9 , A and B. Plural name is base-12.