arrange the binary numeric operators in the order which reflects their priorities, where the top - most…

arrange the binary numeric operators in the order which reflects their priorities, where the top - most position has the highest priority and the bottom - most position has the lowest priority.
Answer
Explanation:
Step1: Recall operator - precedence rules
In arithmetic, exponentiation (**) has higher precedence than multiplication (*) which has higher precedence than subtraction (-).
Step2: Arrange operators
The order from highest to lowest priority is **, *, -.
Answer:
**, *, -