To find: The number of ways in which 2016 can be expressed as the sum of 2s and 3s.
Let us start with the maximum number of 3s and the minimum number of 2s.
2016 = 0 * 2 + 672 * 3
Let us increase the number of 2s and correspondingly decrease the number of 3s.
Removing two 3s and correspondingly increasing the number of 2s by 3 will keep the sum intact.
Here is a listing of the iterations
2016 = 0 * 2 + 672 * 3
2016 = 3 * 2 + 670 * 3
2016 = 6 * 2 + 668 * 3
2016 = 9 * 2 + 666 * 3
.
.
.
.
2016 = 1005 * 2 + 2 *3
2016 = 1008 * 2 + 0 * 3
This covers all the possibilities.
The number of rows in the above iteration is the answer to the question - in how many ways can 2016 be expressed as a sum of 2s and 3s.
Notice that we started with 672 3s and reduced it by 2 in every subsequent row till we reached 0 3s.
So, the number of possibilities is the count of even numbers from 0 to 672
= \(\frac{672}{2}\) + 1
We add the 1 at the end to include the possibility of having 0 3s.
CHOICE-C 337 is the answer