Correct Answer: (b) Wednesday
Solution:Formula for calculating day of any date 0 = sunday, 1 = monday …. 6 = saturday A = century code (4,2,0,6 for remainder 1,2,3,0 respectively); where remainder = Dividing the first two digit of the year by 4 B = last two digits of the year C = number of leap years in that century before that date. D = month code (respective code of the months from start to last are 0,3,3,6,1,4,6,2,5,0,3,5) For ex June code is 4 , December is 5 and so on. , E = Date Day = Remainder of (A + B + C + D + E) when divided by 7. For 22 February 2012, A = 6, B =12, C = 2, D = 3 and E = 22 A + B + C + D + E = 6 + 12 + 2 + 3 + 22 = 45 On dividing 45 by 7 we get 3 as remainder. ⇒ 3 means Wednesday.