Multiple choice Which of the following is an invalid expression? a=b+c; a=b+5; 5=a; a=5; 5==a; Reveal answer Fill a bubble to check yourself C Correct answer Explanation 5=a; is an invalid statement. = is an assignment operator and left operand of the assignment operator must be a variable.