FAFaraz Alaminfarazalam2017.hashnode.dev·Mar 24, 2024 · 3 min readBit Manipulationi) a<<b (a left shift b):- a * 2^b; ii) a>>b(a right shift b):- a/2^b; Write a program to check number is even or odd using bit manipulation. public class Main { public static void oddEven(int n){ int bitMask=1; if((n&bitMas...00