Multiple choice The postfix expression for the infix expression A+B*(C+D)/F+D*E, is AB+CD+F/D+E ABCD+F/+DE+ A*B+CD/F*DE++ A+*BCD/F*DE++ Reveal answer Fill a bubble to check yourself B Correct answer Explanation Applying operator precedence to A + B * (C + D) / F + D * E, the term B * (C + D) / F becomes ABCD + * F /, and D * E becomes DE *. Adding them together yields ABCD + * F / + DE * +.