Ask Python Expert

Purpose of this asignment: Practice for number basis transformation.

Task 1: Solve the following exercises

A) Convert the following numbers (from base 10) to base 2:

•    13
•    85
•    219
•    511
•    512

B) Convert the following numbers (from base 2) to base 10. You should assume they are all positive values:

•    1010
•    10001
•    11011
•    0111011
•    01010101

C) Convert the following numbers:

•    7A1 (base 16) to: base 10
•    567 (base 8) to : base 5
•    567 (base 10) to : base 5
•    2121 (base 3) to : base 4
•    7778 (base 10) to: base 16

D) Convert the following negative numbers (from base 10) to base 2 using 2's complement on 8 bits:

•    -1
•    -13
•    -59
•    -83
•    -128

E) Convert the following numbers (from base 2) to base 10. This binary representation is using 2's complement on 8 bits to represent negative numbers:

•    10101010
•    10011010
•    11001001
•    10001000
•    01111111

Task 2:

prepare a program that allows the user to convert numbers between any 2 basis. Your program should follow the requirements:

A) Your program should support all the basis between 2 and 16 inclusively.

B) It should loop and repeatdly take user input and perform the following operations (shown also in the sample run below): exit the menu, convert a number from any base to any other base, print a file, solve a file.

C) The repetition over the menu options should be implemented using a loop, not recursive calls to main.

D) If a number does not have a not valid representation for the basis that it is represented in, the program should indicate that (by printing a message). It should not crash and should also not work with the number. E.g. see the behavior:

E) Enter a number, current_base, new_base(e.g.: 129,10,2): 127,7,10

F) Invalid representation n =  127  in base: 7   
   
G) The program should be able to perform multiple conversions specified in a 'test file'. Here the 'test file' has the meaning of a 'homework file'. It specifies a set of exercises to be solved. In particular, each line of the file specifies a number and the basis it is written in and a set of other basis to be converted to. The program should be able to read all the lines in such a file, solve each line and prepare the result in another file. The line format is:

H) current_base : number, new_base_1, new_base_2, ..., new_base_M
   
I) The answer for a line in the format above should include the number representation for each of the new bases:

J) current_base : number, new_base_1: number_1, new_base_2: number_2, ..., new_base_M : number_M
   
Notice in the ex above that collons separate the base from the number and commas separate pairs of base and number.

K) Your files (both the test and the solution) should follow the format indicated above.

L) If the number representation is wrong in the test file, the program should also indicate that in the solution file.

M) Your program should work for other test files with more or less basis transformations per line.

N) Your program should work name the solution file based on the test file name, by appending '_solution' to the filename (still with extension '.txt'). For ex in my sample run I used the file 'test1.txt' and I hase saved the answers to a file named 'test1_solution.txt'.

O) You can organize your solution however you want. I recommend writting a function for each of the following operations:

  • Test that a number is valid for the base it is represented in: it contains no illegal symbols. E.g. of bad representations: 127 (in base 7), 1G (in base 16), 1A (in base 10 or less).
  • Convert from base 10 to any other base. This function should take all the arguments it needs: number, new base.
  • Convert from any base to base 10
  • A function (or at least a structure) to map from symbols to values (e.g. 'A' is 10, 'B' is 11, ..., 'F' is 15).
  • Afunction (or at least a structure) to map from values to symbols (e.g. 10 is 'A', 11 is 'B', ..., 15 is 'F').

P) Consider how you want to represent a number (since you have to process it symbol by symbol)

Q) The test file and the solution produced for it in the sample runs are: test1.txt , and test1_solution.txt

Python, Programming

  • Category:- Python
  • Reference No.:- M94779

Have any Question?


Related Questions in Python

Part i the assignment filesone of the most important

Part I: The Assignment Files One of the most important outcomes of this assignment is that you understand the importance of testing. This assignment will follow an iterative development cycle. That means you will write a ...

Homework -this homework will have both a short written and

Homework - This homework will have, both a short written and coding assignment. The problems that are supposed to be written are clearly marked. 1) (Written) Make heuristics Describe two heuristics for the slide problem ...

Tasksdemonstrate data scraping of a social network of

Tasks Demonstrate data scraping of a social network of choice. Develop technical documentation, including the development of the code & detailing the results. Provide a report on the findings, that includes research into ...

Assignment1 utilising python 3 build the following

Assignment 1. Utilising Python 3 Build the following regression models: - Decision Tree - Gradient Boosted Tree - Linear regression 2. Select a dataset (other than the example dataset given in section 3) and apply the De ...

Python programming assignment -you first need an abstract

Python Programming Assignment - You first need an abstract base class, called, Account which has the following attributes and methods: accountID: This attribute holds the ID assigned the account , if not provided set to ...

Learning outcomes lo3 - research develop and document a

Learning Outcomes LO3 - Research, develop, and document a basic security policy, and analyse, record, and resolve all security incidents LO4 - Identify and assess the threats to, and vulnerabilities of networks Assessmen ...

Question research pythons dictionary data type dictdiscuss

Question : Research Python's dictionary data type (dict). Discuss its interface and usage. Include examples. Discuss practical applications of dictionaries.

Questionwhat is a python development frameworkgive 3

Question What is a python development framework? Give 3 examples python development framework used today. and explain which development framework is used in which industry.

Below zero - ice cream storethe local ice-cream store needs

Below Zero - ice cream store The local ice-cream store needs a new ordering system to improve customer service by streamlining the ordering process. The manager of the store has found that many orders are incorrect and s ...

The second task in this assignment is to create a python

The second task in this assignment is to create a Python program called pancakes.py that will determine the final order of a stack of pancakes after a series of flips.(PYTHON 3) Problem Task In this problem, your input w ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As