Page 1 of 1

Problem Using the language of your choice, write a program that offers the following: 1. Create a Hamming code for a giv

Posted: Sat May 14, 2022 4:07 pm
by answerhappygod
Problem Using The Language Of Your Choice Write A Program That Offers The Following 1 Create A Hamming Code For A Giv 1
Problem Using The Language Of Your Choice Write A Program That Offers The Following 1 Create A Hamming Code For A Giv 1 (45.56 KiB) Viewed 59 times
Problem Using The Language Of Your Choice Write A Program That Offers The Following 1 Create A Hamming Code For A Giv 2
Problem Using The Language Of Your Choice Write A Program That Offers The Following 1 Create A Hamming Code For A Giv 2 (43.5 KiB) Viewed 59 times
Problem Using the language of your choice, write a program that offers the following: 1. Create a Hamming code for a given character (Transmitted 12-bit code) 2. Offer to change any one bit in the created Hamming code (Received 12-bit code with an error) 3. Check for an error of the received 12-bit code and show which bit is in error. Use the error-correcting Hamming code with four check bits c8, c4, c2, c1: b12 b11 b10 b9 c8 b7 b6 b5 b3 c2 c1 The interactive input/output should allow users to select and run required processes.

1. Problem statement (10%) - A clear and concise description of the problem. 2. Analysis (20%) - An explanation of what the problem statement tells you to do, and description of the general method used to solve the problem. 3. Design (20%) - Explanation of the algorithm designed to solve the problem. Concentrate on the general program logic that includes: a. Structure chart of the program. b. Description of data transmission between the modules. Description of the algorithms using pseudo code or flowchart. 4. Development of the program (30 %). Comment your code well at the top of each method, class, etc. including the title, inputs and outputs, etc. Comments are important because the well commented functions/logics are helpful to other programmers to understand the code better. c.