What is the behavior of `int a = 10; a = a << 1;`?
Question 1
Q1. What is the behavior of `int a = 10; a = a << 1;`?
Answer: Doubles the value of a
Explanation: Left shift (<<) effectively doubles the value by shifting bits one place to the left.