You are on page 1of 3

Name

Schedule
Subject Code Time / Days Room
Professor
Date
LABORATORY EXERCISES 1.3- Conversion from BINARY TO DECIMAL

Create a C++ / JAVA program that converts binary to Decimal.


FILENAME: Bin2Dec

Name
Schedule
Subject Code Time / Days Room
Professor
Date

LABORATORY EXERCISES 1.4 - Conversion from BINARY TO HEXADECIMAL

Create a C++ / JAVA program that converts binary to hexadecimal.


FILENAME: Bin2Hex
Name
Schedule
Subject Code Time / Days Room
Professor
Date

LECTURE EXERCISES 1.5 - Conversion from HEXADECIMAL TO DECIMAL

HEXADECIMAL DECIMAL
1. F
2. 1E
3. 2C
4. F4
5. 124
6. C0E
7. 579
8. FACE
9. B1B2
10. ACED

Name
Schedule
Subject Code Time / Days Room
Professor
Date
LECTURE EXERCISES 1.6 - Conversion from HEXADECIMAL TO BINARY

HEXADECIMAL BINARY
Example: 0000 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0 - 0 0 0 0
1. D - - - -
2. 1F - - - -
3. 109 - - - -
4. 244 - - - -
5. 598 - - - -
6. BEE - - - -
7. COE - - - -
8. 987 - - - -
9. CEED - - - -
10. FACED - - - -
Name
Schedule
Subject Code Time / Days Room
Professor
Date
LABORATORY EXERCISES 1.5 - Conversion from HEXADECIMAL TO DECIMAL

Create a C++ / JAVA program that converts Hexadecimal to Decimal.


FILENAME: Hex2Dec

Name
Schedule
Subject Code Time / Days Room
Professor
Date
LABORATORY EXERCISES 1.6- Conversion from HEXADECIMAL TO BINARY

Create a C++ / JAVA program that converts Hexadecimal to Binary.


FILENAME: Hex2Bin

You might also like