InterviewSolution
Saved Bookmarks
| 1. |
P ** q = p^2 - q^2 p % q = p^2 - q^2 p $ q = p^2 + q^2 p @ q = pq + p + q p Delta q = Remainder of p/q p © q = greatest integer less than or equal to p/q. If p = 11 and q = 7 , then the value of (p ** q) @ (p $ q) is: |
|
Answer» 14641 |
|