Binary Calculator#199
Merged
prathimacode-hub merged 1 commit intoprathimacode-hub:mainfrom Feb 26, 2025
Merged
Conversation
prathimacode-hub
approved these changes
Feb 26, 2025
Owner
prathimacode-hub
left a comment
There was a problem hiding this comment.
Your PR is approved. @pragna7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issue
-Binary Calculator
Closes: #171
Describe the changes you've made
This web application allows you to perform various binary operations on given binary numbers. With this calculator, you can easily perform binary addition, binary subtraction, binary multiplication, left shift, right shift, and more.
Type of change
Added Binary Calculator
How Has This Been Tested?
Features Added :-
Binary Addition: Add two binary numbers together to get the sum.
Binary Subtraction: Subtract one binary number from another to get the difference.
Binary Multiplication: Multiply two binary numbers to get the product.
Left Shift: Shift the bits of a binary number to the left, filling with zeroes.
Right Shift: Shift the bits of a binary number to the right, filling with zeroes or the sign bit.
Addition: Add two numbers together.
Subtraction: Subtract one number from another.
Multiplication: Multiply two numbers together.
Division: Divide one number by another to get the quotient.
Left Shift: Shift the bits of a number to the left, discarding bits.
Right Shift: Shift the bits of a number to the right, discarding bits.
AND Operator: Perform a bitwise AND operation between two binary numbers.
OR Operator: Perform a bitwise OR operation between two binary numbers.
XOR Operator: Perform a bitwise XOR operation between two binary numbers.
XNOR Operator: Perform a bitwise XNOR operation between two binary numbers.
NAND Operator: Perform a bitwise NAND operation between two binary numbers.
NOT Operator: Perform a bitwise NOT operation to invert the bits of a binary number.
Binary To Gray Operator: Convert a binary number to its corresponding Gray code.
Checklist:
Screenshots