There are parentheses inside parenthesis.the operations inside the_pair are performed first.outer,inner,any,all of the above

Just like in math, parentheses are interpreted from inside-out.

For example:
(5+(4x3))=(5+12)=17

Inner

right!

To determine the order of operations for parentheses inside parentheses, you need to follow the general rule known as the PEMDAS acronym:

1. Parentheses: Operations within parentheses should be done first, starting from the innermost set of parentheses and working outwards.
2. Exponents: Evaluate any exponents or powers.
3. Multiplication and Division: Perform multiplication and division from left to right.
4. Addition and Subtraction: Perform addition and subtraction from left to right.

In this case, the operations inside the parentheses should be evaluated first. Afterwards, you can consider if there are any further operations to be performed.

It is important to note that the specific order of operations may vary between different programming languages or mathematical notations. Nevertheless, the PEMDAS rule is commonly used to establish a standard order of operations.