–@*If x=6, evaluate the expression (x +2) /22468/Day 4 "Statements, Expressions, and Operators"4*If x=6, evaluate the expression x + 3 * 47111836/Day 4 "Statements, Expressions, and Operators"18)If x=6, evaluate the expression 10* ++x16266070/Day 4 "Statements, Expressions, and Operators"70)If x=6, evaluate the expression (x+5) %31234/Day 4 "Statements, Expressions, and Operators"2-Which of these expressions evaluate to false? (6 + 2) ! = 4 25 < = 2470 == (10 % 2) 16 == 0 x 10/Day 4 "Statements, Expressions, and Operators" (6 + 2) ! = 4,Which of these expressions evaluate to true?5 == 5  25 = (5 * 5) (3 / 3) == 1all of the above/Day 4 "Statements, Expressions, and Operators"all of the above4Which line of code expresses " x > y and z < 1000 "?( x > = y ) and ( z < 1000 )( x> y ) and ( z = = 1000 )( y > x ) and (z < 1000)None of the above/Day 4 "Statements, Expressions, and Operators"None of the above\It is good programming practice to use these to specify and clarify precedence of operators:braces brackets  parentheses functions/Day 4 "Statements, Expressions, and Operators" parentheses(If x = 6, evaluate the expression x+= 24826/Day 4 "Statements, Expressions, and Operators"8%If x=6, evaluate the expression x*=44201624/Day 4 "Statements, Expressions, and Operators"24-If x=6, evaluate the expression (x>2)?20:30 262030/Day 4 "Statements, Expressions, and Operators"20 What does the comma operator do?marks the end of a linebegins a commentends a function6separates variable declarations and function arguments/Day 4 "Statements, Expressions, and Operators"6separates variable declarations and function arguments/Choose the operator with the higher precedence:*&=,/Day 4 "Statements, Expressions, and Operators"*.Choose the operator with the lower precedence:&&^+~/Day 4 "Statements, Expressions, and Operators"^"Which C operator takes 3 operands?+=%&?:/Day 4 "Statements, Expressions, and Operators"?:-Which of these expressions evaluates to TRUE?(6 == 6) ((24/4) == 6)(-1)all of the above/Day 4 "Statements, Expressions, and Operators"all of the above8What does this expression evaluate to: (15 % 5) * 3.14?23.459.42015.70/Day 4 "Statements, Expressions, and Operators"0EWhat does this expression evaluate to: (0x10 - 16) ? "True":"False"?"True""False"016/Day 4 "Statements, Expressions, and Operators""False"(Which choice is equivalent to X = X + 1?X += 1X *= 1 X = X / 1X -= 1/Day 4 "Statements, Expressions, and Operators"X += 1What is the not-equal operator?==+=!=<=/Day 4 "Statements, Expressions, and Operators"!=