Construct a model of a byte adder

Assignment Help Python Programming
Reference no: EM131357527

For the coursework, the students are required to develop an application based on detailed guidance on given specifications. Through the coursework students should be able to:

1. Construct a model of a byte adder based on the bit adder

2. Specify an algorithm for integer addition based on binary operation

3. Select suitable data structures to represent the information

4. Create a program in Python which implement the model of the adder

5. Describe the program

6. Test the program with some sample data to demonstrate its behavior

7. Write a report to present the work

• Student are required to submit weekly assignment along with related research evidence

• The guideline for the Documentation/Development part is given below:

o Components to be included are: cover page, proposal, table of contents, figures and tables, footer.

o The report must have an Introduction section with definite goals and objectives (approx. 400 words).

o The report must have a Discussion and Analysis section in which students need to explain how the program was developed.

1. Model
• The model must be based on the bit adder.

139_Figure.jpg

• The model may include number of bit adders linked to form a byte adder.
• The model can be presented using suitable diagram created using drawing tool or graphics editor of your choice (the bit adder can be a box with input and output only)

2. Algorithm
• The algorithm for adding two integers must be based on the use of standard logical operations which have direct hardware implementation (AND, OR, XOR, NOT)
• It can use additional data processing operations which might be necessary to manipulate the data (i.e., input/output operations, type conversion operations, information retrieval operations, bitwise data processing operations, etc.)
• The algorithm must be specified using pseudocode.
• The algorithm can be illustrated using a diagram (optional).

3. Data Structures
• The programming should be done using data structures and operations in Python for input/output, character and string processing, logical or bitwise manipulations.
• It can use any primitive or complex data structures which might be necessary for holding the data (pairs, lists, strings, dictionaries, etc.)
• The choice of data structures must be specified in the report.

4. Program
• The program must work in a loop, reading two integer numbers, computing the sum of them and printing out the result until instructed to quit
• The program must check the input data for the data type permitted (representation of an integer) and the data value limitations (the value of the integer must not exceed the actual size of byte-coded integers, i.e. min 00000000 and max 11111111 in Base 2 or min 0 and max 255 in Base 10 for positive integers, min 11111111 and max 01111111 in Base 2 or min -127 and max +127 in Base 10 for signed integers)
• The program must be implemented in a modular way with separate functions for inputting data, bit operations, integer operations and outputting the result of the calculation

5. Description
• The program must be described in terms of its structure and behaviour.
• It can be presented using text and structural charts, flowcharts or other diagrams as needed.

o The report must have a Research section; the student need to look into at least 5 different books, journals, websites. (approx. 500 words).

o The report must have a Testing section with evidence (through appropriate screen dumps) that has been carried out for the program.

o The report must include a Conclusion section where they need to present their finding of the development and research (approx. 300 words).

• Guidelines for the Continuous assessment are:

o Regular Meeting with the tutor.

o Supportive evidences of their weekly assignment.

o Evidence of feedback from supervisors.

o Hard copy of reference materials.

• Demonstration of the project:
o Students will be asked to demonstrate their group project from their submitted CD and from master git repository.
o If any individual student is not able to justify his/her group project then the project will be kept under plagiarism.

NOTE: The technicality of the project will be judged during the demo and marked accordingly.

Reference no: EM131357527

Questions Cloud

What are the effects of downsizing : Problem statement: What are the effects of downsizing on the long range growth patterns of companies
Plurality-majority or proportional : What electoral system (i.e. Plurality-Majority or Proportional) is better for political representation?
Analyze major ways in which quality issues in health care : Analyze the major ways in which quality issues in health care affect antirust healthcare policy. Provide at least one example of antitrust laws in action to support your response.
Concept of net present value and opportunity cost : Approximately 90,000 students per year apply to the top MBA programs. Using the concept of net present value and opportunity cost, explain when it is rational for an individual to pursue and M.B.A. degree.
Construct a model of a byte adder : Construct a model of a byte adder based on the bit adder and Specify an algorithm for integer addition based on binary operation - Create a program in Python which implement the model of the adder
Negativity effect in digital communications : A. What strategies can you use to ensure ease of reading in your emails and other digital communications? B. What strategies can you use to show respect for the time of others? C. Explain the neutrality effect and negativity effect in digital communi..
Identify a problem in your current job or a previous job : Identify a problem in your current job or a previous job, such as inadequate use of technology, inefficient procedures, spotty customer service, poor product quality, low morale, or a personnel problem
What kinds of natural imbalances might affect your region : When pressures and temperatures become unbalanced in Earth's atmosphere, it can produce some dramatic effects as the system tries to rebalance itself, or re-equilibrate (reach equilibrium). Many of these changes are things that are witnessed every..
Stricter government regulations : Ceteris paribus, an increase in the demand for yoga services has occurred at the same time when the number of yoga service providers has decreased due to stricter government regulations.

Reviews

Write a Review

Python Programming Questions & Answers

  In this assignment you will write a program that does

in this assignment you will write a program that does simple packet routing. your program will take three command-line

  Create a ride share simulator assignment

Create a ride share simulator assignment. In this particular function, I am trying to create a list of the drivers in a Driver Class that are currently listed as idle. Since they are idle, I can then match them up with an awaiting rider. The assignme..

  Program that allows the user to enter the type of coin

Create a program that allows the user to enter the type of coin to be evaluated and the number of coins. The program should calculate the total weight of the coins and the height of the coins when stacked. Name the program coins.py. Use the table bel..

  Implement a program in python that given names of students

Implement a program in Python that, given 500 names of students and 500 integers in the range (0,100) representing the scores of these 500 students, calculates

  Write a program that opens an encrypted file

Write a second program that opens an encrypted file and display its decrypted contents on the screen.

  Assume an n × n matrix a is given

Assume an n × n matrix A is given, containing only 1's and 0's, such that, in each row, all 1's come before all 0's. Give an O(n log n) algorithm to count all 1's in A.

  Most popular name would be the one with the biggest number

the program will ask you to insert the year that the user is interested in, then ask the gender that the user is interested in, and print out the most popular names corresponding to the year and gender. FYI, the number on the right represents how man..

  Write a program to render an animated humanoid walking robot

Write a program to render an animated humanoid walking robot. r robot must have two arms and two legs that are made of cylinders. each arm is made of the upper arm and lower arm (forearm).

  Compare programming with python and programming with scratch

Compare programming with python and programming with scratch. Describe the same program you might create in both programming languages.

  Design and implement a python program which plays poker

The goal of this project is to gain practice with use of classes and creating functions. You will design and implement a Python program which plays simplified Texas Hold'em Poker.

  Recursive sorts are easier to write in functional style

Recursive sorts are easier to write in functional style than others. Two recursive sorts are  Quicksort and Mergesort. Write functional versions of (a) Quicksort; (b) Mergesort in an  imperative language of your choice (e.g., C, Ada, C++, Python), us..

  Takes a directory containing files that record

Create a program called grading.py that takes a directory containing files that record how student's performed on their assignments and from these files determines each students grades in addition to the course statistics.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd