Q1. On a board, the numbers a, b, c, d, e, f are written in a circle (say counter-clockwise). You may increase two neighbouring numbers by 1. For which case is it impossible to equalize all of them by a sequence of such steps? Select any one option a = 4, b = 10, c = 5, d = 6, e = 9, f = 2 a = 3, b = 9, c = 7, d = 6, e = 9, f = 4 a = 4, b = 11, c = 7, d = 7, e = 10, f = 2 a = 7, b = 10, c = 5, d = 8, e = 9, f = 3 S1. First a partially correct approach which works in this case but will not work always. Final sum of all numbers is even. All the increments are also even.(multiple of 2) So the original sum of all the numbers should also be even. Only option 3 fails. Hence that's the answer. But that approach fails for: a=2,b=4,c=2,d=4,e=2,f=4 So the better way to solve it is this: Let there be 2 groups: Group 1: a,c,e Group 2: b,d,f Each time we increment, we increment by 1 in each group. So the original sum in both the groups should be same. Else it won't work. Q2. On a 10x10 boa...