Computer Science for IGCSE & O level - Programming (Section 15 - No. 22)

In the calculation example: `Calculate Number1 + Number2 * Number3;`, what operation will be performed first, according to the rules of precedence?
Number1 + Number2
Number2 * Number3
The entire expression will result in an error.
The order will depend on the compiler used.

Explanation

Multiplication is performed before addition in typical operator precedence rules.

Comments (0)

Advertisement