Practical on Binary Arithmetic and radix conversion 1007ICT

The aim of this practical exercise is to re-enforce the material related to the addition and subtraction of binary numbers, the representation of negative numbers, and the conversion from one representation to another.

The following is a randomly generated exercise and is different for each user.

NOTE: You can get feedback on your answers byhitting the 'TestYourAnswers' button. When you haveCom[pleted the lab, ask your lab tutor to record a mark.

  1. Perform binary addition on these binary numbers...

    111101 + 1101111 =>
    1111 + 11100111 =>
    10100011 + 100 =>

  2. Perform binary subtraction on these binary numbers. Assume 8 bit two's complement representation.

    1001111 - 10101 =>
    10100101 - 10011 =>
    11111010 - 111 =>

  3. Negate the binary numbers shown.
    Assume 8 bit two's complement representation...

    - 10110010 =>
    - 11010101 =>
    - 10101110 =>

  4. Convert the following numbers between the given bases

    octal 17 : binary
    octal 331 : hexadecimal
    hexadecimal F7 : decimal


Program: ``binary_arith'' 23 Feb 1995
Authors: Anthony Thyssen & David Abramson
Last modified by Sven Venema 17 March 2008