InterviewSolution
Saved Bookmarks
| 1. |
For any natural number p and q (i) p # q = p^3 + q^3 + 3 and p ** q = p^2 + q^2 + 2 and p $ q = |p - q| (ii) Max (p,q) = Maximum of (p,q) and Min (p and q) = Minimum of (p,q) The value of [(4 # 5) $ (14 ** 15)] is : |
|
Answer» a. `-196` |
|