To get # of numbers greater than 400 and even, first digit can be any number from 4 to 8 while last number should be an even number.
if the last number is 2, then we have
1 way to fill the last digit; 100's place can be filled by 4,5,6,7,8(total
5) and 10th place can be filled with any number from 1 to 8, since two numbers are already being filled in last digit and 100th place, we can take only
6 digits, thus total number of numbers that end with two is 1*5*6=30
if the last number is 4,6,8, then we have
3 ways to fill the last digit; 100's place can be filled by 5,7, and any two of {4,6,8} (total
4), as the other number is filled in last digit earlier. and 10th place can be filled with any number from 1 to 8, since two numbers are already being filled in last digit and 100th place, we can take only
6 digits, thus total number of numbers that end with either [4,6,8] is 3*4*6 = 72 numbers
Total number of numbers = 30+72 = 102