answersLogoWhite

0

What else can I help you with?

Related Questions

What is decimal binary ocfal and hexadecimal systems?

Decimal is base 10. Binary is base 2. Octal is base 8. Hexadecimal is base 16.


How do you convert 10011110 base 2 to a hexadecimal number?

10011110 base 2 = 9E base 16


How do you convert octal to decimal?

yes its octal form is (101)to the base 8.


Computers often express numbers in what format?

Base 16 numbering is called 'Hex' or 'Hexadecimal'. Base 8 numbering is called 'Octal'. Base 2 numbering is called 'Binary'.


How do you convert decimal 9 to octal?

yes its octal form is (101)to the base 8.


Why is it possible to have decimal numbers?

It is possible to have numbers in ANY base. Binary, octal and hexadecimal are used extensively in computers. Furthermore, the base can be any positive number - it does not even need to be rational.


What is non-base?

"Non-base" typically refers to any number system that is not base 10 (decimal), such as binary (base 2), hexadecimal (base 16), or octal (base 8). These non-base number systems are used in computer science and mathematics for various purposes.


How do you divide octal and hexadecimal nos?

If you mean, for example, divide one hexadecimal number by another: In any number base, you can use basically the same method you use with decimal numbers - in the case of division, the "long division". However, you have to use the corresponding multiplication table, for example, the multiplication table for multiplying two hexadecimal digits, with a hexadecimal result.


What are some alternative number systems and how do they differ from the traditional decimal system?

Some alternative number systems include binary, octal, and hexadecimal. These systems differ from the traditional decimal system in the base they use to represent numbers. For example, binary uses base 2, octal uses base 8, and hexadecimal uses base 16, while the decimal system uses base 10. This means that each system has a different set of digits and rules for counting and representing numbers.


Hexa to octal?

The best way is to first convert hexadecimal to binary and then to octal. For example the hexadcimal number B4EA is in binary: B 4 E A 1011 0100 1110 1010 Thus B4EA (hexadecimal) = 1011010011101010 (binary) We add leading zeros to the binary number in order to be able to divide the number in sets of 3 digits. Then we convert easy to octal as follows: 001 011 010 011 101 010 1 3 2 3 5 2 Therefore 1011010011101010 (binary) = 132352 (octal) and from here you have your result: B4EA (hexadecimal) = 132352 (octal)


What does 110110 translate to?

dude! seriously?! if it binary then it is 54. Hexadecimal it is 1114384. octal it is 36939. depends what base you consider it. you can take any base you want.


How many types of integer constants are allowed in java.how are they written?

3 types.. 1.decimal base 10 octal base 8 hexadecimal base 16