The expression "i * 2" represents multiplying the value of variable 'i' by 2. This multiplication operation doubles the value held by 'i'.
Related terms
Arithmetic Operator: An arithmetic operator performs mathematical operations on variables or constants. Examples include addition (+), subtraction (-), multiplication (*), and division (/).
Variable: A variable is a named location in memory that holds a value which can change during program execution.
Assignment Operator: An assignment operator (=) assigns a value to a variable or modifies its contents based on the right-hand side expression.