InterviewSolution
Saved Bookmarks
| 1. |
Show that exactly one of the numbers n,n+1,n+4 is divisible by 3 |
| Answer» We applied Euclid Division algorithm on n and 3. a = bq +r on putting a = n and b = 3 n = 3q +r , 0 | |