To sum up my question would be is a calculator not following the standard left to right order of operations considered a bad calculator? Is this being a universal convention means that programs or calculators that do not follow it are wrong?
My college uses a self-made program for us to do our homework assignments. I'm having an argument with one of its technical support guys as to whether the program is wrong for not following this convention, since my answer was marked wrong for giving an answer in this format: A / B * C, instead of one with parentheses ( i.e. (A / B) * C ). He claims that the answer is ambiguous and could also be interpreted as A / (B * C). In my opinion since most calculators, programming languages, and the likes do follow a convention then it should too.