Converting the binary (base-10) number 20 to decimal (base-2) gives 10100.
Binary encoding can be defined as a standard technique that is designed and developed to convert data in plain text (source alphabets) to a form that is easily used by different operating systems (OS), especially through the use of a binary digit (bit) or two-symbol system.
In Computer programming, two's complement of base-10 is generally easier to implement because it has a single representation of 0 only.
2 | 20
2 | 10 R 0
2 | 5 R 0
2 | 2 R 1
2 | 1 R 0
2 | 0 R 1
Next, you would read the decimal number (base-2) upward and this gives:
20₂ = 10100.
Read more on binary encoding here: https://brainly.com/question/13100118
#SPJ1