answersLogoWhite

0


Best Answer

1D.12516

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Convert 35.1 octal number to hexadecimal base number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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.


How do you convert decimal 9 to octal?

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'.


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.


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.


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


Convert the Hexadecimal number A2 into its Base 10 equivalent.?

calc.exe will do the conversion for you A2(16)=162(10)


Why octal and hexadecimal used fo r computers although it work with binary?

Hexadecimal counts to the base 16 and octal counts to base 8 and in computers the pasterns of 1s and 0s are grouped into bits (1) bytes (1111111) and words (1111111111111111). Thus to be able to express a complete pattern for a byte or a word it is useful to use base 8 or base 16 counting.