garimavyas
@ karishma, thanks again

, please do provide some background for this method you used.
Divisibility and Remainder Rule of 11:
When you have a number say 12345 and you want to find whether it is divisible by 11, do the following:
Start with the right most digit (5 here). Add to it every alternate digit i.e. 5 + 3 + 1 = 9 (These are the odd digits. 1st rightmost digit + 3rd rightmost digit etc)
Sum all even place digits 4 + 2 = 6
If these two sums differ by 0 or any multiple of 11, the number is divisible by 11.
Else it is not. In this case 9 - 6 = 3 so number is not divisible by 7.
Also, the remainder in this case is 3.
Remember, remainder is Sum of Odd digits - Sum of even digits
e.g. 12. Remainder here is 2 - 1 = 1
but 21 Remainder here is 1-2 = -1 i.e. 10
Similarly 12859
Odd digits sum = 9+8+1 = 18
Even digits sum = 5 + 2 = 7
Difference between the sums is 11 so this number is divisible by 11.