SyntaxFix
Write A Post
Hire A Developer
Questions
Signed left shift Logically Simple if 1<<11 it will tends to 2048 and 2<<11 will give 4096
In java programming int a = 2 << 11;
// it will result in 4096 2<<11 = 2*(2^11) = 4096