Problem #2: [35 pts] Parity Bit Checker The parity bit of a sequence of bits is 0 if the number of 1’s in the sequence is even and 1 otherwise. Example:  if the sequence of bits is 1 1 0 1, the parity bit should be 1 (total number of 1-bits is 3 which is odd)  if the sequence of bits is 1 0 1 0, the parity bit should be 0 (total number of 1-bits is 2 which is even) Write a Java program that asks the user to enter the number of bits he has. The program then reads the bits as separate integers. In the end, the program prints the parity bit on the screen. If the use enters a bit value that is neither 0 nor 1, the entry should be discarded and a message displayed as shown in the sample run. Sample run 1: How many bits do you have? 6 Enter 6 bits: 1 1 0 0 1 0 The parity bit is 1 Sample run 2: How many bits do you have? 8 Enter 8 bits: 1 1 1 0 0 0 0 1 The parity bit is 0 Sample run 3: How many bits do you have? 5 Enter 5 bits: 1 1 3 0 1 Incorrect bit value 3 is discarded. The parity bit is 1       java brogram

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter1: Fundamentals Of C++ Programming
Section1.4: Preliminary Four: Algorithms
Problem 4E
icon
Related questions
Question

Problem #2: [35 pts] Parity Bit Checker
The parity bit of a sequence of bits is 0 if the number of 1’s in the sequence is even and 1
otherwise.
Example:
 if the sequence of bits is 1 1 0 1, the parity bit should be 1 (total number of 1-bits is 3 which
is odd)
 if the sequence of bits is 1 0 1 0, the parity bit should be 0 (total number of 1-bits is 2 which
is even)
Write a Java program that asks the user to enter the number of bits he has. The program then
reads the bits as separate integers. In the end, the program prints the parity bit on the screen. If
the use enters a bit value that is neither 0 nor 1, the entry should be discarded and a message
displayed as shown in the sample run.
Sample run 1:
How many bits do you have? 6
Enter 6 bits: 1 1 0 0 1 0
The parity bit is 1
Sample run 2:
How many bits do you have? 8
Enter 8 bits: 1 1 1 0 0 0 0 1
The parity bit is 0
Sample run 3:
How many bits do you have? 5
Enter 5 bits: 1 1 3 0 1
Incorrect bit value 3 is discarded.
The parity bit is 1

 

 

 

java brogram

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Fundamentals of Boolean Algebra and Digital Logics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr