I don't know about others but the very first solution to this problem confused me
Why to start with a zero when it says four digit number , a zero at the beginning will make it a 3 digit no.
here is a more logical approach
4 digit even numbers so first digit cannot be a zero
from 0 to 9 we have 10 digits for each of the four places, please note digits cannot be repeated so each digit has to be distinct.
even numbers will end in a 0 ,2,4,6,8 right?
so lets see if the last digit is zero then
for first digit we have 1 to 9 options{ cannot have 0 here} , second digit we have 8 options , 3 digit we have 7 options and of course units digit i .e has only one option ,0
so 9*8*7*1
same way when last digit is 2
then 8*8*7*1
{ 8 options for the thousands place because it cannot be 2 and 0 }
{ 8 options for the hundredth place because 2 digits have already been reserved }
{ 7 options for the tens place because 3 digits have already been reserved}
{ 1 options for the units place because this case is for when unit digit is 2 }
same way when last digit is 4
then 8*8*7*1 { 8 options for the thousands place because it cannot be 4 and 0 }
{ 8 options for the hundredth place because 2 digits have already been reserved }
{ 7 options for the tens place because 3 digits have already been reserved}
{ 1 options for the units place because this case is for when unit digit is 4 }
when last digit is 6
then 8*8*7*1
{ 8 options for the thousands place because it cannot be 6 and 0 }
{ 8 options for the hundredth place because 2 digits have already been reserved }
{ 7 options for the tens place because 3 digits have already been reserved}
{ 1 options for the units place because this case is for when unit digit is 6 }
when last digit is 8
then then 8*8*7*1 { 8 options for the thousands place because it cannot be 8 and 0 }
{ 8 options for the hundredth place because 2 digits have already been reserved }
{ 7 options for the tens place because 3 digits have already been reserved}
{ 1 options for the units place because this case is for when unit digit is 8 }
so (8*8*7*1)*4 + 9*8*7*1 = 1792 + 504 = 2296
of course explanation is long but in actual exam all I would do is,
9*8*7*1 + (8*8*7*1)4 = 2296
Hope that helps!