We use the order of operations:
parentheses/brackets
exponents
division, multiplication applied left to right
addition, subtraction applied left to right
$$a/bc = \frac ab \cdot c$$
Since division and multiplication have equal precedence, we apply division only for $a/b$, then multiply by $c$.
Since parentheses have highest precedence, we compute, first, $bc$, then divide $a$ by $(bc)$.
$$a/(bc) = \frac a{bc}$$
$$a/bc + d = \frac ab \cdot c + d$$
$$a/(bc) + d = (a/(bc)) + d = \frac a{bc} + d$$
$$a/(bc + d) = \dfrac{a}{(bc) + d}$$
When in doubt, use parentheses! The few extra keystrokes it takes makes certain how the expression is to be evaluated is worth sparing you from ambiguity or unintended calculations, etc.