What do bitwise operators do?
Answer / Love Kumar Singh Chauhan
Bitwise operators manipulate individual bits within an integer or binary number. They allow for fine-grained control over binary representations, performing operations like AND (&), OR (|), XOR (^), and NOT (!) on the individual bits of a number.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is meant by Encapsulation? Can you write a class to explain encapsulation?
What are the types of strings?
What is the common usage of serialization?
Does java support multiple inheritance or not?
What's the base class in java from which all classes are derived?
Can an anonymous class be declared as implementing an interface and extending a class in java programming?
What is the benefit of inner classes in java?
how tha garbage collector know that the object will be deleted? on which algorithm the garbage collector works? what is the working principle of garbage collector? How manay types of garbage collectors r there?
How we can execute any code even before main method?
Write a code to show a static variable?
How do you compare values in java?
What is the purpose of using bufferedinputstream and bufferedoutputstream classes?