\AQquestion{What's the correct syntax for shifting the integer \texttt{a} eight bits to the left?}
{{\texttt{b = lshift(a, 8) ;}},
 {\texttt{b = 8 << a ;}},
 {\texttt{b = a << 8 ;}}}
