InterviewSolution
Saved Bookmarks
| 1. |
In the set of integers with operation * defined by a * b = a + b – ab, the value of 3 * (4 * 5) is …(a) 25 (b) 15 (c) 10 (d) 5 |
|
Answer» (a) 25 a * b = a + b – ab 3 * (4 * 5) = 3 * (4 + 5 – 4(5)) = 3 * (9 – 20) = 3 * (-11) = 3 + (-11) – 3(-11) = 3 – 11 + 33 = -8 + 33 = 25 |
|