Skip to content

Commit 584fc8f

Browse files
Update bitwise-operator.md
1 parent 094ae74 commit 584fc8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lessons/bitwise-operator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Bit manipulation is also a common topic in coding interviews, especially with FA
3030
If you’re applying for a role that will work with embedded systems or other low-level systems, you’ll encounter more bit questions. In short, the closer your role is to machine level, the more bit manipulation questions you’ll encounter.
3131

3232
The best way to prepare for bit manipulation questions is to practice using each bitwise operator and brush up on your binary to decimal conversions.
33-
# Bitwise Operators In Java
33+
## Bitwise Operators In Java
3434
You are no doubt familiar with the arithmetic operators such as + - * / or %. You are also aware of logical operators such as & or |. Turns out there is another, a slightly less known set of operators, which manipulate numbers on bit level. Internally, every number is stored in a binary format - that is 0 and 1. Bitwise operators are used for performing manipulation of bits of a number. These can be used with any type of integer data types (char, short, int, etc).
3535

3636
These operators can be performed on integer types -

0 commit comments

Comments
 (0)