Determine if the following statements have any errors. If so,highlight them and explain why.
• int 2 nd_value=10;
• Assume (x=0, y=0, alliszero=1). alliszero =(x=1) &&(y=0);
• Assume (x=10, y=3, z=0;). y=++x+y; z=z−−>x;
• Assume that we want to test if last four bits of x are on.(int MASK=0xF; ison=x&MASK==MASK)
Answer