Assignment 1 ENG2139-SYDNEY

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

THE UNIVERSITY OF ZAMBIA

SCHOOL OF ENGINEERING
DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY

ENG2139 ASSIGNMENT 1

NAME: SYDNEY MUWOWO

COMPUTER NUMBER: 2021427030

GROUP: G19

GROUP MEMBERS: ISAAC CHINOYA

PESHA CHINTAMO

JOY CHINTU

NACHIYOBA CHINYAMA

LIFUNGA CHIPANGO

INNOCENT MUYOBA

TASHA MUYUNDA

NALUCA MUYUNDA
SOLUTIONS:

QUESTION 1:

~Why we convert binary to hexadecimal

The choice of hexadecimal representation is taken because of human readability and ease of
conversion. This also works the other way round so its much easier for big binary numbers (that appear
in memory addresses) to convert them into hex and manipulate them with this representations

~How to convert binary to hexadecimal

1. Start at the rightmost digit and break the binary number up into groups of four digits. These are
known as nibbles . ...

2. Next, convert each group of four digits into decimal.

3. Convert each decimal value into its hex equivalent.

4. Put the hex digits together.

~To convert 1011110111 to hexadecimal

0010 1111 0111

= 8421 8421 8421


= 2 15 7

= 2F716
QUESTION 2:

Letters indicating false statements are; D, E & F

You might also like