CBSE Class 11 Informatics Practices
Question 3 of 40
Practice Paper — Question 3
Back to all questions150
Reason — The operator *= is a shorthand for multiplying and assigning a value. So, a *= b means a = a * b. Given a = 10 and b = 15, the expression evaluates to a = 10 * 15, which results in a = 150.