when an Integer (let's call it X) is Divided by 18 -----> yields a Remainder = 7
X = 7 + (Multiple of 18)
or
X = 18a + 7 ----- where a = NON-Negative Integer Quotient
This Same Number when Divided by 12 ----> yields a Remainder = n
Since the Answer Choices are not that large, you can easily test some values and see if a Pattern emerges:
X = 7 ------ 7/12 ----- Rem = 7
X = 25 ------- 25/12 ------ Rem = 1
X = 43 -------- 43/12 ------- Rem = 7
X = 61 -------- 61/12 ------ Rem = 1
Answer - n can take 2 Values: Rem of 1 or Rem of 7
-C-
or you can take the Euclidean Remainder Equation above and try Dividing the Unique Integer X by 12
X = 18a + 7
(X/12) = (18a + 7)/(12)
Remainder of: (18a + 7) / (12) =
(18a / 12)Rem of + (7 / 12) Rem of =
(18/12) Rem of * (a/12) Rem of + (7 / 12) Rem of =
6 * (a/12)Rem of + 7 =
----where a = Integer quotient------
---The Unique Remainders that (a/12)Remainder of ---> can yield are: [0 ; 1 ; 2 ; 3 ; .......11]
Remove Excess Remainders that EXCEED the Divisor of 12 by continually Dividing by 12:
6 * 1 + 7 = 13 ----- (13/12) = Rem of 1
6 * 2 + 7 = 19 ------ (19/12) = Rem of 7
6 * 3 + 7 = 25 ------- (25/12) = Rem of 1
6 * 4 + 7 = 31 ------ (31/12) = Rem of 7
6 * 5 + 7 = 37 ------ (37/12) = Rem of 1
.....at this point you should be confident that the Pattern will Repeat. However, you could continue through all the Unique Remainders that the Term ---- (a/12)Remainder of ----- can yield.