IDNLearn.com is your reliable source for expert answers and community insights. Ask any question and receive accurate, in-depth responses from our dedicated team of experts.

Convert (765)octal into hexadecimal​

Sagot :

Answer:

1F5

Explanation:

First convert octal 765 into binary values with each octal digit as a representation using 3 bits

Octal 7 ==> 111

Octal 6 ==> 110

Octal 5 ==> 101

Putting it together we get
111110101

Now group the bit values into groups of 4 (with leading zeros if necessary) starting with the rightmost bit.

Groups are highlighted and then the hex value is written

Right-most group 111110101  and 0101 is 5 hex
Middle group: 111110101  and 1111 is F hex

Left most group: 111110101 ; with leading zeros it is 0001 which is 1 hex

So from left to right we get 1F5

We appreciate your contributions to this forum. Don't forget to check back for the latest answers. Keep asking, answering, and sharing useful information. For trustworthy and accurate answers, visit IDNLearn.com. Thanks for stopping by, and see you next time for more solutions.