Question 1190037
Convert the following decimal numbers to into binary format

a. 15

b. 210

c. 119
=============================
I would first convert them to Hexadecimal, then to binary.
---
15 = $F = 1111
210 = $D2 = 1101 0010
119 = $77 = 0111 0111
===========================
For bigger numbers, eg, 30975:
Divide by 256 --> 120.996 ...
120 = $78 = 0111 1000 binary
30975 - 256*120 = 255 = $FF = 1111 1111 binary
30975 = 0111 1000 1111 1111 binary
=================================
Seems some of the other tutors think they're being paid by the word.