InterviewSolution
Saved Bookmarks
| 1. |
What u mean by euclid\'s division algorithm |
|
Answer» According to Euclid’s Division Lemma if we have two positive integers a and b, then there exist unique integers q and r which satisfies the condition a = bq + r where 0 ≤ r ≤ b. Given positive integers a and b,their exist unique integers q and r satisfying a=bq+r, where 0 is equl to or smaller than r is smaller than b |
|